@@ -8,7 +8,7 @@ DROP TABLE IF EXISTS `bank`;
88CREATE TABLE IF NOT EXISTS ` bank`
99(
1010 ` playerID` int (10 ) UNSIGNED NOT NULL ,
11- ` itemID` int ( 10 ) UNSIGNED NOT NULL ,
11+ ` itemID` BIGINT NOT NULL ,
1212 ` slot` int (5 ) UNSIGNED NOT NULL DEFAULT 0 ,
1313 KEY (` playerID` )
1414) ENGINE = InnoDB
@@ -98,7 +98,7 @@ CREATE TABLE IF NOT EXISTS `experience`
9898 KEY ` playerID` (` playerID` )
9999) ENGINE = InnoDB
100100 DEFAULT CHARSET = utf8;
101-
101+
102102DROP TABLE IF EXISTS ` maxstats` ;
103103CREATE TABLE IF NOT EXISTS ` maxstats`
104104(
@@ -126,7 +126,7 @@ CREATE TABLE IF NOT EXISTS `maxstats`
126126 KEY ` playerID` (` playerID` )
127127) ENGINE = InnoDB
128128 DEFAULT CHARSET = utf8;
129-
129+
130130DROP TABLE IF EXISTS ` capped_experience` ;
131131CREATE TABLE IF NOT EXISTS ` capped_experience`
132132(
@@ -215,7 +215,7 @@ DROP TABLE IF EXISTS `invitems`;
215215CREATE TABLE IF NOT EXISTS ` invitems`
216216(
217217 ` playerID` int (10 ) UNSIGNED NOT NULL ,
218- ` itemID` int ( 10 ) UNSIGNED NOT NULL ,
218+ ` itemID` BIGINT NOT NULL ,
219219 ` slot` int (5 ) UNSIGNED NOT NULL ,
220220 KEY (` playerID` )
221221) ENGINE = InnoDB
@@ -307,7 +307,7 @@ CREATE TABLE IF NOT EXISTS `players`
307307 KEY ` banned` (` banned` )
308308) ENGINE = InnoDB
309309 DEFAULT CHARSET = utf8;
310-
310+
311311ALTER TABLE ` players`
312312ALTER ` cameraauto` SET DEFAULT 1 ;
313313
@@ -564,7 +564,7 @@ CREATE TABLE IF NOT EXISTS `grounditems`
564564DROP TABLE IF EXISTS ` itemstatuses` ;
565565CREATE TABLE IF NOT EXISTS ` itemstatuses`
566566(
567- ` itemID` int ( 10 ) UNSIGNED NOT NULL ,
567+ ` itemID` BIGINT NOT NULL ,
568568 ` catalogID` int (10 ) UNSIGNED NOT NULL ,
569569 ` amount` int (10 ) UNSIGNED NOT NULL DEFAULT 1 ,
570570 ` noted` tinyint (1 ) UNSIGNED NOT NULL DEFAULT 0 ,
0 commit comments