mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 10:05:32 +01:00
DB/Vendors: Adjust size of PlayerConditionID in npc_vendor to INT(10) UNSIGNED since it is a db2 index
This commit is contained in:
@@ -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`;
|
||||
|
||||
2
sql/updates/world/2015_07_19_29_world.sql
Normal file
2
sql/updates/world/2015_07_19_29_world.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE `npc_vendor`
|
||||
CHANGE COLUMN `PlayerConditionID` `PlayerConditionID` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `type`;
|
||||
Reference in New Issue
Block a user