mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Blackmarket: Implemented black market
This commit is contained in:
@@ -239,6 +239,32 @@ LOCK TABLES `banned_addons` WRITE;
|
||||
/*!40000 ALTER TABLE `banned_addons` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `blackmarket_auctions`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `blackmarket_auctions`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
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;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `blackmarket_auctions`
|
||||
--
|
||||
|
||||
LOCK TABLES `blackmarket_auctions` WRITE;
|
||||
/*!40000 ALTER TABLE `blackmarket_auctions` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `blackmarket_auctions` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `bugreport`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user