summaryrefslogtreecommitdiffstats
path: root/src/sql/sqlite/updates/update_16_to_17.sql
diff options
context:
space:
mode:
Diffstat (limited to 'src/sql/sqlite/updates/update_16_to_17.sql')
-rw-r--r--src/sql/sqlite/updates/update_16_to_17.sql16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/sql/sqlite/updates/update_16_to_17.sql b/src/sql/sqlite/updates/update_16_to_17.sql
new file mode 100644
index 0000000..769c26d
--- /dev/null
+++ b/src/sql/sqlite/updates/update_16_to_17.sql
@@ -0,0 +1,16 @@
+-- Create the new floor item table
+CREATE TABLE mana_floor_items
+(
+ id INTEGER PRIMARY KEY,
+ map_id INTEGER NOT NULL,
+ item_id INTEGER NOT NULL,
+ amount INTEGER NOT NULL,
+ pos_x INTEGER NOT NULL,
+ pos_y INTEGER NOT NULL
+);
+
+-- Update the database version, and set date of update
+UPDATE mana_world_states
+ SET value = '17',
+ moddate = strftime('%s','now')
+ WHERE state_name = 'database_version';