blob: 921bcf8251c45b2631bd7125c3dbe8f51a14e8a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
--
-- SQLite - update 11 to 12 doesn't affect Sqlite,
-- so we only change the database version number.
--
-- update the database version, and set date of update
UPDATE mana_world_states
SET value = '12',
moddate = strftime('%s','now')
WHERE state_name = 'database_version';
|