diff options
author | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2010-01-16 21:26:54 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2010-01-16 21:27:48 +0100 |
commit | 747e64a5fabe3feec6b3bc6f478baadb2a2b0ba5 (patch) | |
tree | d60af8dfd2318e637faa790fd8e59902cf8e09d2 /src/sql | |
parent | 8bf0791932c8809fe5bd85d53859b8ce6197e4ed (diff) | |
download | manaserv-747e64a5fabe3feec6b3bc6f478baadb2a2b0ba5.tar.gz manaserv-747e64a5fabe3feec6b3bc6f478baadb2a2b0ba5.tar.bz2 manaserv-747e64a5fabe3feec6b3bc6f478baadb2a2b0ba5.tar.xz manaserv-747e64a5fabe3feec6b3bc6f478baadb2a2b0ba5.zip |
Correct the database version
Was forgotten in de7d79c7f42636065ca5281fa3bec151e34a7c48
Problem reported by ChristianK on IRC.
Diffstat (limited to 'src/sql')
-rw-r--r-- | src/sql/sqlite/createTables.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sql/sqlite/createTables.sql b/src/sql/sqlite/createTables.sql index e3222da9..7128984e 100644 --- a/src/sql/sqlite/createTables.sql +++ b/src/sql/sqlite/createTables.sql @@ -374,7 +374,7 @@ AS 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,'7', strftime('%s','now')); +INSERT INTO mana_world_states VALUES('database_version', NULL,'8', strftime('%s','now')); -- all known transaction codes |