l2j_mobius/trunk/dist/tools/sql/game/auctions_info.sql
erlandys56 ebe4ba005d - Added all referenced libraries for eclipse to perform as it should.
- Renamed AuctionManager into ClanHallAuctionManager.
 - Created Comission (Auction house) system.
 - Reworked vitality system from account based to subclass based.
2015-01-24 21:21:32 +00:00

13 lines
463 B
SQL

CREATE TABLE IF NOT EXISTS `auctions_info` (
`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`)
);