Auction House Manager rework.
This commit is contained in:
13
trunk/dist/tools/sql/game/auction_house.sql
vendored
Normal file
13
trunk/dist/tools/sql/game/auction_house.sql
vendored
Normal 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`)
|
||||
);
|
||||
Reference in New Issue
Block a user