diff options
author | Hercules.ws <dev@herc.ws> | 2018-07-23 01:05:52 +0200 |
---|---|---|
committer | HerculesWSAPI <dev@herc.ws> | 2018-07-23 01:05:52 +0200 |
commit | af63b6854165593087e517e99c665347cf635e49 (patch) | |
tree | 2c4c8507320e16088dd83794c96710867febc424 | |
parent | be3209bc5ff1b88314c47a6fdc53d73deaa9e96a (diff) | |
download | hercules-af63b6854165593087e517e99c665347cf635e49.tar.gz hercules-af63b6854165593087e517e99c665347cf635e49.tar.bz2 hercules-af63b6854165593087e517e99c665347cf635e49.tar.xz hercules-af63b6854165593087e517e99c665347cf635e49.zip |
ItemDB SQL Sync
Signed-off-by: HerculesWSAPI <dev@herc.ws>
-rw-r--r-- | sql-files/item_db.sql | 2 | ||||
-rw-r--r-- | sql-files/item_db2.sql | 2 | ||||
-rw-r--r-- | sql-files/item_db_re.sql | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sql-files/item_db.sql b/sql-files/item_db.sql index 45d712a6f..bfd6d20ba 100644 --- a/sql-files/item_db.sql +++ b/sql-files/item_db.sql @@ -29,7 +29,7 @@ DROP TABLE IF EXISTS `item_db`; CREATE TABLE `item_db` ( - `id` smallint(5) UNSIGNED NOT NULL DEFAULT '0', + `id` int(11) UNSIGNED NOT NULL DEFAULT '0', `name_english` varchar(50) NOT NULL DEFAULT '', `name_japanese` varchar(50) NOT NULL DEFAULT '', `type` tinyint(2) UNSIGNED NOT NULL DEFAULT '0', diff --git a/sql-files/item_db2.sql b/sql-files/item_db2.sql index 1957b0b8c..4df23a4d0 100644 --- a/sql-files/item_db2.sql +++ b/sql-files/item_db2.sql @@ -29,7 +29,7 @@ DROP TABLE IF EXISTS `item_db2`; CREATE TABLE `item_db2` ( - `id` smallint(5) UNSIGNED NOT NULL DEFAULT '0', + `id` int(11) UNSIGNED NOT NULL DEFAULT '0', `name_english` varchar(50) NOT NULL DEFAULT '', `name_japanese` varchar(50) NOT NULL DEFAULT '', `type` tinyint(2) UNSIGNED NOT NULL DEFAULT '0', diff --git a/sql-files/item_db_re.sql b/sql-files/item_db_re.sql index 5763847dc..7bd8fba12 100644 --- a/sql-files/item_db_re.sql +++ b/sql-files/item_db_re.sql @@ -29,7 +29,7 @@ DROP TABLE IF EXISTS `item_db`; CREATE TABLE `item_db` ( - `id` smallint(5) UNSIGNED NOT NULL DEFAULT '0', + `id` int(11) UNSIGNED NOT NULL DEFAULT '0', `name_english` varchar(50) NOT NULL DEFAULT '', `name_japanese` varchar(50) NOT NULL DEFAULT '', `type` tinyint(2) UNSIGNED NOT NULL DEFAULT '0', |