UNPKG

@flowfuse/flowfuse

Version:

An open source low-code development platform

19 lines (17 loc) 386 B
/** * Add 'properties' to Teams table */ const { DataTypes } = require('sequelize') module.exports = { /** * upgrade database * @param {QueryInterface} context Sequelize.QueryInterface */ up: async (context) => { await context.addColumn('Teams', 'properties', { type: DataTypes.TEXT }) }, down: async (context) => { } }