mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 10:31:29 +00:00
This removes the is_pending column from character lockouts table Synchronizing character lockout timers with the expedition's when zoning into the dynamic zone simplifies adding missing lockouts to new members. This also matches live behavior that replaces any character lockout timers from another expedition with ones from the current expedition
57 lines
1.9 KiB
SQL
57 lines
1.9 KiB
SQL
CREATE TABLE `expeditions` (
|
|
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
`uuid` VARCHAR(36) NOT NULL,
|
|
`dynamic_zone_id` INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
|
`expedition_name` VARCHAR(128) NOT NULL,
|
|
`leader_id` INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
|
`min_players` TINYINT(3) UNSIGNED NOT NULL DEFAULT 0,
|
|
`max_players` TINYINT(3) UNSIGNED NOT NULL DEFAULT 0,
|
|
`add_replay_on_join` TINYINT(3) UNSIGNED NOT NULL DEFAULT 1,
|
|
`is_locked` TINYINT(3) UNSIGNED NOT NULL DEFAULT 0,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE INDEX `dynamic_zone_id` (`dynamic_zone_id`)
|
|
)
|
|
COLLATE='latin1_swedish_ci'
|
|
ENGINE=InnoDB
|
|
;
|
|
|
|
CREATE TABLE `expedition_lockouts` (
|
|
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
`expedition_id` INT(10) UNSIGNED NOT NULL,
|
|
`event_name` VARCHAR(256) NOT NULL,
|
|
`expire_time` DATETIME NOT NULL DEFAULT current_timestamp(),
|
|
`duration` INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
|
`from_expedition_uuid` VARCHAR(36) NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE INDEX `expedition_id_event_name` (`expedition_id`, `event_name`)
|
|
)
|
|
COLLATE='latin1_swedish_ci'
|
|
ENGINE=InnoDB
|
|
;
|
|
|
|
CREATE TABLE `expedition_members` (
|
|
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
`expedition_id` INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
|
`character_id` INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE INDEX `expedition_id_character_id` (`expedition_id`, `character_id`)
|
|
)
|
|
COLLATE='latin1_swedish_ci'
|
|
ENGINE=InnoDB
|
|
;
|
|
|
|
CREATE TABLE `character_expedition_lockouts` (
|
|
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
`character_id` INT(10) UNSIGNED NOT NULL,
|
|
`expedition_name` VARCHAR(128) NOT NULL,
|
|
`event_name` VARCHAR(256) NOT NULL,
|
|
`expire_time` DATETIME NOT NULL DEFAULT current_timestamp(),
|
|
`duration` INT(10) UNSIGNED NOT NULL DEFAULT 0,
|
|
`from_expedition_uuid` VARCHAR(36) NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE INDEX `character_id_expedition_name_event_name` (`character_id`, `expedition_name`, `event_name`)
|
|
)
|
|
COLLATE='latin1_swedish_ci'
|
|
ENGINE=InnoDB
|
|
;
|