From 9c85904b24a5fa72c096f023e3deaa96b85dd52c Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Sun, 8 Mar 2009 23:23:50 -0600 Subject: Fix a bug in the sqlite db creation file --- src/sql/sqlite/createTables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sql/sqlite/createTables.sql') diff --git a/src/sql/sqlite/createTables.sql b/src/sql/sqlite/createTables.sql index 11478d9..42a884d 100644 --- a/src/sql/sqlite/createTables.sql +++ b/src/sql/sqlite/createTables.sql @@ -218,7 +218,7 @@ CREATE TABLE tmw_transactions char_id INTEGER NOT NULL, action INTEGER NOT NULL, message TEXT, - time INTEGER NOT NULL, + time INTEGER NOT NULL ); CREATE TABLE tmw_online_list -- cgit From 39dd791921e94ffb55e3005e5c131c46c8929a78 Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Sun, 8 Mar 2009 23:26:56 -0600 Subject: Fix database version in sqlite db creation file --- src/sql/sqlite/createTables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sql/sqlite/createTables.sql') diff --git a/src/sql/sqlite/createTables.sql b/src/sql/sqlite/createTables.sql index 42a884d..1831c45 100644 --- a/src/sql/sqlite/createTables.sql +++ b/src/sql/sqlite/createTables.sql @@ -142,7 +142,7 @@ CREATE TABLE tmw_world_states INSERT INTO tmw_world_states VALUES('accountserver_startup',NULL,NULL, strftime('%s','now')); INSERT INTO tmw_world_states VALUES('accountserver_version',NULL,NULL, strftime('%s','now')); -INSERT INTO tmw_world_states VALUES('database_version', NULL,'2', strftime('%s','now')); +INSERT INTO tmw_world_states VALUES('database_version', NULL,'3', strftime('%s','now')); CREATE TABLE tmw_auctions ( -- cgit