UNPKG

@grouparoo/core

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