upgrade_20221220.sql 798 B

1234567891011121314151617181920
  1. --
  2. -- Table structure for table `party_bookings`
  3. --
  4. CREATE TABLE IF NOT EXISTS `party_bookings` (
  5. `world_name` varchar(32) NOT NULL,
  6. `account_id` int(11) unsigned NOT NULL,
  7. `char_id` int(11) unsigned NOT NULL,
  8. `char_name` varchar(23) NOT NULL,
  9. `purpose` smallint(5) unsigned NOT NULL DEFAULT '0',
  10. `assist` tinyint(3) unsigned NOT NULL DEFAULT '0',
  11. `damagedealer` tinyint(3) unsigned NOT NULL DEFAULT '0',
  12. `healer` tinyint(3) unsigned NOT NULL DEFAULT '0',
  13. `tanker` tinyint(3) unsigned NOT NULL DEFAULT '0',
  14. `minimum_level` smallint(5) unsigned NOT NULL,
  15. `maximum_level` smallint(5) unsigned NOT NULL,
  16. `comment` varchar(255) NOT NULL DEFAULT '',
  17. `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  18. PRIMARY KEY (`world_name`, `account_id`, `char_id`)
  19. ) ENGINE=MyISAM;