summaryrefslogtreecommitdiff
path: root/src/account-server/dalstoragesql.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/account-server/dalstoragesql.hpp')
-rw-r--r--src/account-server/dalstoragesql.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/account-server/dalstoragesql.hpp b/src/account-server/dalstoragesql.hpp
index df141f69..b129b797 100644
--- a/src/account-server/dalstoragesql.hpp
+++ b/src/account-server/dalstoragesql.hpp
@@ -282,24 +282,24 @@ const std::string SQL_INVENTORIES_TABLE(
#if defined (MYSQL_SUPPORT)
"id INTEGER PRIMARY KEY AUTO_INCREMENT,"
"owner_id INTEGER NOT NULL,"
+ "slot SMALLINT NOT NULL,"
"class_id INTEGER NOT NULL,"
"amount SMALLINT NOT NULL,"
- "equipped TINYINT NOT NULL,"
"FOREIGN KEY (owner_id) REFERENCES tmw_characters(id)"
"INDEX (id)"
#elif defined (SQLITE_SUPPORT)
"id INTEGER PRIMARY KEY,"
"owner_id INTEGER NOT NULL,"
+ "slot INTEGER NOT NULL,"
"class_id INTEGER NOT NULL,"
"amount INTEGER NOT NULL,"
- "equipped INTEGER NOT NULL,"
"FOREIGN KEY (owner_id) REFERENCES tmw_characters(id)"
#elif defined (POSTGRESQL_SUPPORT)
"id SERIAL PRIMARY KEY,"
"owner_id INTEGER NOT NULL,"
+ "slot INTEGER NOT NULL,"
"class_id INTEGER NOT NULL,"
"amount INTEGER NOT NULL,"
- "equipped INTEGER NOT NULL,"
"FOREIGN KEY (owner_id) REFERENCES tmw_characters(id)"
#endif
");"