DB/Vendors: Adjust size of PlayerConditionID in npc_vendor to INT(10) UNSIGNED since it is a db2 index

This commit is contained in:
Carbenium
2015-07-19 18:22:19 +02:00
parent cb0e6cac63
commit 006d95cb9a
2 changed files with 3 additions and 1 deletions

View File

@@ -1,3 +1,3 @@
ALTER TABLE `npc_vendor`
ADD COLUMN `PlayerConditionID` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `type`,
ADD COLUMN `IgnoreFiltering` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `PlayerConditionID`;
ADD COLUMN `IgnoreFiltering` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `PlayerConditionID`;

View File

@@ -0,0 +1,2 @@
ALTER TABLE `npc_vendor`
CHANGE COLUMN `PlayerConditionID` `PlayerConditionID` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `type`;