Refactored tools\sql\server to tools\sql\game.
This commit is contained in:
7
trunk/dist/tools/sql/game/buylists.sql
vendored
Normal file
7
trunk/dist/tools/sql/game/buylists.sql
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE IF NOT EXISTS `buylists` (
|
||||
`buylist_id` INT UNSIGNED,
|
||||
`item_id` INT UNSIGNED,
|
||||
`count` BIGINT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`next_restock_time` BIGINT UNSIGNED NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`buylist_id`, `item_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user