Auction House Manager rework.

This commit is contained in:
mobius
2015-01-31 21:50:40 +00:00
parent 54e0fd97d6
commit 7a26540007
3 changed files with 336 additions and 474 deletions

View File

@@ -0,0 +1,13 @@
CREATE TABLE IF NOT EXISTS `auction_house` (
`auctionID` int(11) NOT NULL DEFAULT '0',
`sellerID` int(11) NOT NULL DEFAULT '0',
`itemName` varchar(50) DEFAULT NULL,
`itemOID` int(11) NOT NULL,
`price` bigint(20) NOT NULL,
`count` bigint(20) unsigned NOT NULL DEFAULT '0',
`category` int(3) NOT NULL,
`duration` int(11) NOT NULL,
`finishTime` bigint(13) NOT NULL,
`itemID` int(13) NOT NULL,
PRIMARY KEY (`sellerID`,`auctionID`)
);