mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
[Hotfix] Backfill expire_at (not sure why this didn't make it in there to begin with)
This commit is contained in:
parent
a2bf10624a
commit
9be2485330
@ -7081,7 +7081,7 @@ CREATE INDEX `idx_expire_at` ON `respawn_times` (`expire_at`);
|
||||
ALTER TABLE `instance_list`
|
||||
ADD COLUMN `expire_at` bigint(11) UNSIGNED NOT NULL DEFAULT 0 AFTER `duration`;
|
||||
|
||||
UPDATE instance_list set expire_at = `start` + `duration`; -- backfill existing data
|
||||
UPDATE instance_list set expire_at = `start_time` + `duration`; -- backfill existing data
|
||||
|
||||
CREATE INDEX `idx_expire_at` ON `instance_list` (`expire_at`);
|
||||
)",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user