summaryrefslogtreecommitdiff
path: root/src/sql/sqlite/createTables.sql
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-08-25 23:35:25 +0200
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2011-08-25 23:35:25 +0200
commitec99e999a918f6680d38704d9408933090d0386a (patch)
tree89e2361ccc9da7d88c10cc0967e9898d9cdab0a6 /src/sql/sqlite/createTables.sql
parentf2368c9887e8b97b76e459a5088ed52bb5ee4512 (diff)
parenta4d0b4d6e0360f09b1f01ec59f548cdb297ebd4c (diff)
downloadmanaserv-ec99e999a918f6680d38704d9408933090d0386a.tar.gz
manaserv-ec99e999a918f6680d38704d9408933090d0386a.tar.bz2
manaserv-ec99e999a918f6680d38704d9408933090d0386a.tar.xz
manaserv-ec99e999a918f6680d38704d9408933090d0386a.zip
Merge branch 'equipment-fix' of github.com:Bertram25/manaserv
Diffstat (limited to 'src/sql/sqlite/createTables.sql')
-rw-r--r--src/sql/sqlite/createTables.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sql/sqlite/createTables.sql b/src/sql/sqlite/createTables.sql
index b366606b..1027b580 100644
--- a/src/sql/sqlite/createTables.sql
+++ b/src/sql/sqlite/createTables.sql
@@ -178,7 +178,8 @@ CREATE TABLE mana_char_equips
id INTEGER PRIMARY KEY,
owner_id INTEGER NOT NULL,
slot_type INTEGER NOT NULL,
- inventory_slot INTEGER NOT NULL,
+ item_id INTEGER NOT NULL,
+ item_instance INTEGER NOT NULL,
--
FOREIGN KEY (owner_id) REFERENCES mana_characters(id)
);