1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-06-27 01:19:00 +02:00

Update src/migrations/20250623100820-cr-requested-approvals-add-notified-at-column.js

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Christopher Kolstad 2025-06-23 12:44:51 +02:00 committed by GitHub
parent 279fdb7c77
commit 10fd0fa3a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,6 +5,6 @@ exports.up = function(db, cb) {
exports.down = function(db, cb) {
db.runSql(`
DROP INDEX IF EXISTS cr_req_approvers_notifiied_at_idx;
DROP INDEX IF EXISTS cr_req_approvers_notified_at_idx;
ALTER TABLE change_request_requested_approvers DROP COLUMN notified_at;`, cb);
};