Update 20220702132722-add-webhooks-deleted-at.js

This commit is contained in:
Tom Moor
2022-07-08 02:22:48 -07:00
committed by GitHub
parent 1e808fc52c
commit 98106e7f6f

View File

@@ -7,7 +7,7 @@ module.exports = {
allowNull: true
});
},
down: async () => {
down: async (queryInterface) => {
await queryInterface.removeColumn("webhook_subscriptions", "deletedAt");
},
};