mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
10 lines
252 B
JavaScript
10 lines
252 B
JavaScript
'use strict'
|
|
|
|
module.exports = {
|
|
up: (queryInterface, Sequelize) => {
|
|
return queryInterface.sequelize.query('ALTER TYPE "enum_event_notifications_status" ADD VALUE \'sending\'').catch(e => {})
|
|
},
|
|
|
|
down: (queryInterface, Sequelize) => {
|
|
}
|
|
}
|