Core/Blackmarket: Implemented black market

This commit is contained in:
Gigi1237
2015-08-22 20:29:17 +02:00
committed by Shauren
parent 116c807076
commit c19172cad9
19 changed files with 1135 additions and 17 deletions

View 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;