@grouparoo/core
Version:
The Grouparoo Core
14 lines (13 loc) • 492 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
up: async (queryInterface) => {
await queryInterface.dropTable("exportRuns");
await queryInterface.dropTable("exportImports");
await queryInterface.removeColumn("runs", "exportsCreated");
await queryInterface.removeColumn("runs", "profilesExported");
},
down: async () => {
throw new Error("cannot recover data for this migration");
},
};