You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
798 B
SQL
21 lines
798 B
SQL
--
|
|
-- 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;
|