Refactored tools\sql\server to tools\sql\game.
This commit is contained in:
9
trunk/dist/tools/sql/game/item_auction.sql
vendored
Normal file
9
trunk/dist/tools/sql/game/item_auction.sql
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE IF NOT EXISTS `item_auction` (
|
||||
`auctionId` int(11) NOT NULL,
|
||||
`instanceId` int(11) NOT NULL,
|
||||
`auctionItemId` int(11) NOT NULL,
|
||||
`startingTime` bigint(13) unsigned NOT NULL DEFAULT '0',
|
||||
`endingTime` bigint(13) unsigned NOT NULL DEFAULT '0',
|
||||
`auctionStateId` tinyint(1) NOT NULL,
|
||||
PRIMARY KEY (`auctionId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user