2023-09-03 14:01:42 +00:00
|
|
|
ALTER TABLE reminders ADD COLUMN `status_change_time` DATETIME;
|
|
|
|
|
|
|
|
-- This is a best-guess as to the status change time.
|
2023-09-23 14:16:45 +00:00
|
|
|
UPDATE reminders SET `status_change_time` = `utc_time` WHERE `status` != 'pending';
|