mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
6c52158723
What it says on the tin. Closes: # [1-1766](https://linear.app/unleash/issue/1-1766/add-reason-column-to-change-request-schedule) --------- Signed-off-by: andreas-unleash <andreas@getunleash.ai>
8 lines
247 B
JavaScript
8 lines
247 B
JavaScript
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);
|
|
};
|