1234567891011121314151617181920 |
- CREATE TABLE IF NOT EXISTS `vending_items` (
- `vending_id` int(10) unsigned NOT NULL,
- `index` smallint(5) unsigned NOT NULL,
- `cartinventory_id` int(10) unsigned NOT NULL,
- `amount` smallint(5) unsigned NOT NULL,
- `price` int(10) unsigned NOT NULL
- ) ENGINE=MyISAM;
- CREATE TABLE IF NOT EXISTS `vendings` (
- `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,
- `autotrade` tinyint(4) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=MyISAM;
|