diff options
author | Dastgir <dastgir@users.noreply.github.com> | 2016-10-03 18:14:07 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-03 18:14:07 +0530 |
commit | 4765df464bf860906e395b73721d761b93cf3f35 (patch) | |
tree | acaa741333429456ca64cc54cf25370ed2f9c0c0 | |
parent | 0dd3f6fab116463cbb0cad52767a2e4fce4d40fc (diff) | |
parent | c1ae611b90330a8599c2328df6d03e9681637eab (diff) | |
download | hercules-4765df464bf860906e395b73721d761b93cf3f35.tar.gz hercules-4765df464bf860906e395b73721d761b93cf3f35.tar.bz2 hercules-4765df464bf860906e395b73721d761b93cf3f35.tar.xz hercules-4765df464bf860906e395b73721d761b93cf3f35.zip |
Merge pull request #1451 from gdesatrigraha/fix_item_db
use mediumint for equip_locations in db2sql
-rw-r--r-- | src/plugins/db2sql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/db2sql.c b/src/plugins/db2sql.c index af5ab99af..f801e4147 100644 --- a/src/plugins/db2sql.c +++ b/src/plugins/db2sql.c @@ -457,7 +457,7 @@ void itemdb2sql_tableheader(void) " `equip_jobs` bigint(20) UNSIGNED DEFAULT NULL,\n" " `equip_upper` tinyint(8) UNSIGNED DEFAULT NULL,\n" " `equip_genders` tinyint(2) UNSIGNED DEFAULT NULL,\n" - " `equip_locations` smallint(4) UNSIGNED DEFAULT NULL,\n" + " `equip_locations` mediumint(8) UNSIGNED DEFAULT NULL,\n" " `weapon_level` tinyint(2) UNSIGNED DEFAULT NULL,\n" " `equip_level_min` smallint(5) UNSIGNED DEFAULT NULL,\n" " `equip_level_max` smallint(5) UNSIGNED DEFAULT NULL,\n" |