1234567891011121314151617181920 |
- --
- -- Table structure for table `party_bookings`
- --
- CREATE TABLE IF NOT EXISTS `party_bookings` (
- `world_name` varchar(32) NOT NULL,
- `account_id` int(11) unsigned NOT NULL,
- `char_id` int(11) unsigned NOT NULL,
- `char_name` varchar(23) NOT NULL,
- `purpose` smallint(5) unsigned NOT NULL DEFAULT '0',
- `assist` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `damagedealer` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `healer` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `tanker` tinyint(3) unsigned NOT NULL DEFAULT '0',
- `minimum_level` smallint(5) unsigned NOT NULL,
- `maximum_level` smallint(5) unsigned NOT NULL,
- `comment` varchar(255) NOT NULL DEFAULT '',
- `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
- PRIMARY KEY (`world_name`, `account_id`, `char_id`)
- ) ENGINE=MyISAM;
|