mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-27 20:32:21 +01:00
Core/Blackmarket: Implemented black market
This commit is contained in:
9
sql/updates/characters/2016_04_11_01_characters.sql
Normal file
9
sql/updates/characters/2016_04_11_01_characters.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
DROP TABLE IF EXISTS `blackmarket_auctions`;
|
||||
CREATE TABLE `blackmarket_auctions` (
|
||||
`marketId` int(10) NOT NULL DEFAULT '0',
|
||||
`currentBid` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||||
`time` int(10) NOT NULL DEFAULT '0',
|
||||
`numBids` int(10) NOT NULL DEFAULT '0',
|
||||
`bidder` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`marketId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
Reference in New Issue
Block a user