UNPKG

@grouparoo/core

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