mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 09:44:45 +01:00
Auction house changes:
- Stop storing guid for auctioneer. - Store instead house ID - No separate ID for various houses. Only Horde, Alliance and Neutral. - Removed non-needed faction checks. - Use enum for auction house IDs NOTE: This will expire all current auctions and return item to player (or award to high bidder) in order to prepare database for the changes.
This commit is contained in:
5
sql/updates/characters/2015_09_28_00_characters_335.sql
Normal file
5
sql/updates/characters/2015_09_28_00_characters_335.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
UPDATE `auctionhouse`
|
||||
SET `time` = 0, `auctioneerguid` = 7;
|
||||
|
||||
ALTER TABLE `auctionhouse`
|
||||
CHANGE COLUMN `auctioneerguid` `houseid` TINYINT(3) UNSIGNED NOT NULL DEFAULT '7' AFTER `id`;
|
||||
Reference in New Issue
Block a user