UNPKG

@flowfuse/flowfuse

Version:

An open source low-code development platform

17 lines (14 loc) 315 B
/** * Add agentVersion to a Device */ const { DataTypes } = require('sequelize') module.exports = { up: async (context) => { await context.addColumn('Devices', 'agentVersion', { type: DataTypes.STRING, allowNull: true }) }, down: async (context) => { } }