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

@@ -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`
--