diff --git a/src/migrations/20231213111906-add-reason-to-change-request-schedule.js b/src/migrations/20231213111906-add-reason-to-change-request-schedule.js new file mode 100644 index 0000000000..ada197aaf6 --- /dev/null +++ b/src/migrations/20231213111906-add-reason-to-change-request-schedule.js @@ -0,0 +1,7 @@ +exports.up = function(db, cb) { + db.runSql(`ALTER TABLE change_request_schedule ADD COLUMN failure_reason text`, cb); +}; + +exports.down = function(db, cb) { + db.runSql(`ALTER TABLE change_request_schedule DROP COLUMN failure_reason`, cb); +};