diff options
Diffstat (limited to 'src/sql/sqlite')
-rw-r--r-- | src/sql/sqlite/createTables.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sql/sqlite/createTables.sql b/src/sql/sqlite/createTables.sql index a5822f37..1d222442 100644 --- a/src/sql/sqlite/createTables.sql +++ b/src/sql/sqlite/createTables.sql @@ -419,9 +419,9 @@ AS -- initial world states and database version -INSERT INTO mana_world_states VALUES('accountserver_startup',NULL,NULL, strftime('%s','now')); -INSERT INTO mana_world_states VALUES('accountserver_version',NULL,NULL, strftime('%s','now')); -INSERT INTO mana_world_states VALUES('database_version', NULL,'19', strftime('%s','now')); +INSERT INTO mana_world_states VALUES('accountserver_startup',-1,'0', strftime('%s','now')); +INSERT INTO mana_world_states VALUES('accountserver_version',-1,'0', strftime('%s','now')); +INSERT INTO mana_world_states VALUES('database_version', -1,'19', strftime('%s','now')); -- all known transaction codes |