mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-11 00:08:30 +01:00
feat: add reason column to change_request_schedule (#5631)
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>
This commit is contained in:
parent
bcf0e6b7a3
commit
6c52158723
@ -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);
|
||||
};
|
Loading…
Reference in New Issue
Block a user