fix status event_notification enum adding 'sending'

This commit is contained in:
les
2021-03-08 21:07:32 +01:00
parent 41e3040347
commit 18547cdc1b
2 changed files with 11 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
'use strict'
module.exports = {
up: (queryInterface, Sequelize) => {
return queryInterface.sequelize.query('ALTER TYPE "enum_event_notifications_status" ADD VALUE \'sending\'')
},
down: (queryInterface, Sequelize) => {
}
}