summaryrefslogtreecommitdiffstats
path: root/src/sql/sqlite/createTables.sql
diff options
context:
space:
mode:
authorDavid Athay <ko2fan@gmail.com>2009-03-05 14:30:19 +0000
committerDavid Athay <ko2fan@gmail.com>2009-03-05 14:30:19 +0000
commitbe548ff54b8fa60a8a778714cd8fa5326722c0aa (patch)
tree5b68e5363fd592b4402944c298f77f3bf2b60f0e /src/sql/sqlite/createTables.sql
parent30a6139d35938d9e86b33e32d5e5b111a16db937 (diff)
downloadmanaserv-be548ff54b8fa60a8a778714cd8fa5326722c0aa.tar.gz
manaserv-be548ff54b8fa60a8a778714cd8fa5326722c0aa.tar.xz
manaserv-be548ff54b8fa60a8a778714cd8fa5326722c0aa.zip
Added transactional history
Diffstat (limited to 'src/sql/sqlite/createTables.sql')
-rw-r--r--src/sql/sqlite/createTables.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/sql/sqlite/createTables.sql b/src/sql/sqlite/createTables.sql
index 68d4ed5..11478d9 100644
--- a/src/sql/sqlite/createTables.sql
+++ b/src/sql/sqlite/createTables.sql
@@ -212,6 +212,14 @@ CREATE TABLE tmw_post_attachments
CREATE INDEX tmw_post_attachments_ltr ON tmw_post_attachments ( letter_id );
CREATE INDEX tmw_post_attachments_itm ON tmw_post_attachments ( item_id );
+CREATE TABLE tmw_transactions
+(
+ id INTEGER PRIMARY KEY,
+ char_id INTEGER NOT NULL,
+ action INTEGER NOT NULL,
+ message TEXT,
+ time INTEGER NOT NULL,
+);
CREATE TABLE tmw_online_list
(