* Move sql updates for 0.11 release to sql/updates/0.11
[getmangos.git] / sql / updates / 0.11 / 5664_mangos.sql
blob3f49b913a8c23a006cc8c8b4b2856bf536e53760
1 ALTER TABLE npc_vendor
2     ADD ExtendedCost mediumint(8) unsigned NOT NULL default '0';
3 UPDATE npc_vendor,item_template SET npc_vendor.ExtendedCost = item_template.ExtendedCost WHERE npc_vendor.item = item_template.entry;
4 ALTER TABLE item_template
5     DROP ExtendedCost,
6     DROP CondExtendedCost;