Skip to content

Commit 9be2485

Browse files
committed
[Hotfix] Backfill expire_at (not sure why this didn't make it in there to begin with)
1 parent a2bf106 commit 9be2485

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/database/database_update_manifest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7081,7 +7081,7 @@ CREATE INDEX `idx_expire_at` ON `respawn_times` (`expire_at`);
70817081
ALTER TABLE `instance_list`
70827082
ADD COLUMN `expire_at` bigint(11) UNSIGNED NOT NULL DEFAULT 0 AFTER `duration`;
70837083
7084-
UPDATE instance_list set expire_at = `start` + `duration`; -- backfill existing data
7084+
UPDATE instance_list set expire_at = `start_time` + `duration`; -- backfill existing data
70857085
70867086
CREATE INDEX `idx_expire_at` ON `instance_list` (`expire_at`);
70877087
)",

0 commit comments

Comments
 (0)