UNPKG

@flowfuse/flowfuse

Version:

An open source low-code development platform

16 lines (13 loc) 285 B
/** * Add role column to Invitations */ const { DataTypes } = require('sequelize') module.exports = { up: async (context) => { await context.addColumn('Invitations', 'role', { type: DataTypes.INTEGER }) }, down: async (context) => { } }