1
0
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:
andreas-unleash 2023-12-13 14:07:02 +02:00 committed by GitHub
parent bcf0e6b7a3
commit 6c52158723
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
};