1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-03-04 00:18:40 +01:00
unleash.unleash/src/migrations/20240102142100-incoming-webhooks-created-by.js

14 lines
328 B
JavaScript
Raw Normal View History

exports.up = function (db, cb) {
db.runSql(
`
ALTER TABLE incoming_webhooks ALTER COLUMN created_by_user_id DROP NOT NULL;
ALTER TABLE incoming_webhook_tokens ALTER COLUMN created_by_user_id DROP NOT NULL;
`,
cb,
);
};
exports.down = function (db, callback) {
callback();
};