@grouparoo/core
Version:
The Grouparoo Core
14 lines (13 loc) • 414 B
JavaScript
;
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");
},
};