mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-09 20:07:31 -08:00
78119c9f22
* ⚡ Consolidate Prettier ignore patterns * ⚡ Let Prettier select file types to format * 🎨 Apply formatting
37 lines
1,006 B
TypeScript
37 lines
1,006 B
TypeScript
import { MigrationInterface, QueryRunner } from 'typeorm';
|
|
import config from '@/config';
|
|
|
|
export class AddWaitColumnId1626183952959 implements MigrationInterface {
|
|
name = 'AddWaitColumnId1626183952959';
|
|
|
|
async up(queryRunner: QueryRunner): Promise<void> {
|
|
const tablePrefix = config.getEnv('database.tablePrefix');
|
|
|
|
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: QueryRunner): Promise<void> {
|
|
const tablePrefix = config.getEnv('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`',
|
|
);
|
|
}
|
|
}
|