|
@@ -0,0 +1,21 @@
|
|
|
+CREATE TABLE IF NOT EXISTS `buyingstore_items` (
|
|
|
+ `buyingstore_id` int(10) unsigned NOT NULL,
|
|
|
+ `index` smallint(5) unsigned NOT NULL,
|
|
|
+ `item_id` int(10) unsigned NOT NULL,
|
|
|
+ `amount` smallint(5) unsigned NOT NULL,
|
|
|
+ `price` int(10) unsigned NOT NULL
|
|
|
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
|
+
|
|
|
+CREATE TABLE IF NOT EXISTS `buyingstores` (
|
|
|
+ `id` int(10) unsigned NOT NULL,
|
|
|
+ `account_id` int(11) unsigned NOT NULL,
|
|
|
+ `char_id` int(10) unsigned NOT NULL,
|
|
|
+ `sex` enum('F','M') NOT NULL DEFAULT 'M',
|
|
|
+ `map` varchar(20) NOT NULL,
|
|
|
+ `x` smallint(5) unsigned NOT NULL,
|
|
|
+ `y` smallint(5) unsigned NOT NULL,
|
|
|
+ `title` varchar(80) NOT NULL,
|
|
|
+ `limit` int(10) unsigned NOT NULL,
|
|
|
+ `autotrade` tinyint(4) NOT NULL,
|
|
|
+ PRIMARY KEY (`id`)
|
|
|
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|