@flowfuse/flowfuse
Version:
An open source low-code development platform
16 lines (14 loc) • 356 B
JavaScript
/**
* Add reminderSentAt to Invitations table
*/
const { DataTypes } = require('sequelize')
module.exports = {
up: async (context) => {
await context.addColumn('Invitations', 'reminderSentAt', {
type: DataTypes.DATE,
allowNull: true,
defaultValue: null
})
},
down: async (context) => {}
}