diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-02-15 13:43:24 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-02-15 13:43:24 -0300 |
commit | a73f60bde1d38f7ac553a0b0cfc8de0477731e96 (patch) | |
tree | 85a9814bd4464441d69b3098d695a8cf3ab8e1a3 /sql-files/main.sql | |
parent | 82b027e7a16ab9a29af11a6246eddfe7a846d793 (diff) | |
download | serverdata-a73f60bde1d38f7ac553a0b0cfc8de0477731e96.tar.gz serverdata-a73f60bde1d38f7ac553a0b0cfc8de0477731e96.tar.bz2 serverdata-a73f60bde1d38f7ac553a0b0cfc8de0477731e96.tar.xz serverdata-a73f60bde1d38f7ac553a0b0cfc8de0477731e96.zip |
Fix SQL bug reported by @Raizel
Diffstat (limited to 'sql-files/main.sql')
-rw-r--r-- | sql-files/main.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-files/main.sql b/sql-files/main.sql index f48da3c96..7b99aa0ee 100644 --- a/sql-files/main.sql +++ b/sql-files/main.sql @@ -998,7 +998,7 @@ CREATE TABLE IF NOT EXISTS `storage` ( `id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `account_id` INT(11) UNSIGNED NOT NULL DEFAULT '0', `nameid` INT(11) UNSIGNED NOT NULL DEFAULT '0', - `amount` SMALLINT(11) UNSIGNED NOT NULL DEFAULT '0', + `amount` INT(11) UNSIGNED NOT NULL DEFAULT '0', `equip` INT(11) UNSIGNED NOT NULL DEFAULT '0', `identify` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', `refine` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0', |