n8n
Version:
n8n Workflow Automation Tool
22 lines • 1.29 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.AddWaitColumnId1626183952959 = void 0;
const config = require("../../../../config");
class AddWaitColumnId1626183952959 {
constructor() {
this.name = 'AddWaitColumnId1626183952959';
}
async up(queryRunner) {
const tablePrefix = config.get('database.tablePrefix');
console.log('\n\nINFO: Started with migration for wait functionality.\n Depending on the number of saved executions, that may take a little bit.\n\n');
await queryRunner.query('ALTER TABLE `' + tablePrefix + 'execution_entity` ADD `waitTill` DATETIME NULL');
await queryRunner.query('CREATE INDEX `IDX_' + tablePrefix + 'ca4a71b47f28ac6ea88293a8e2` ON `' + tablePrefix + 'execution_entity` (`waitTill`)');
}
async down(queryRunner) {
const tablePrefix = config.get('database.tablePrefix');
await queryRunner.query('DROP INDEX `IDX_' + tablePrefix + 'ca4a71b47f28ac6ea88293a8e2` ON `' + tablePrefix + 'execution_entity`');
await queryRunner.query('ALTER TABLE `' + tablePrefix + 'execution_entity` DROP COLUMN `waitTill`');
}
}
exports.AddWaitColumnId1626183952959 = AddWaitColumnId1626183952959;
//# sourceMappingURL=1626183952959-AddWaitColumn.js.map
;