diff --git a/src/migrations/20220224081422-remove-project-column-from-roles.js b/src/migrations/20220224081422-remove-project-column-from-roles.js index 840ea50de8..ffd166931a 100644 --- a/src/migrations/20220224081422-remove-project-column-from-roles.js +++ b/src/migrations/20220224081422-remove-project-column-from-roles.js @@ -3,6 +3,5 @@ exports.up = function (db, cb) { }; exports.down = function (db, cb) { - // We can't just remove roles for users as we don't know if there has been any manual additions. db.runSql('ALTER TABLE roles ADD COLUMN IF NOT EXISTS project text', cb); };