UNPKG

@grouparoo/core

Version:
14 lines (13 loc) 421 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = { up: async (queryInterface, DataTypes) => { await queryInterface.addColumn("destinations", "syncMode", { type: DataTypes.STRING(191), allowNull: true, }); }, down: async (queryInterface) => { await queryInterface.removeColumn("destinations", "syncMode"); }, };