n8n/packages/cli/src/databases/postgresdb/migrations/1594828256133-CreateIndexStoppedAt.ts

26 lines
858 B
TypeScript
Raw Normal View History

2020-07-26 02:33:20 -07:00
import { MigrationInterface, QueryRunner } from "typeorm";
import { config } from '@config';
export class CreateIndexStoppedAt1594828256133 implements MigrationInterface {
2020-07-26 02:33:20 -07:00
name = 'CreateIndexStoppedAt1594828256133';
2020-07-26 02:33:20 -07:00
async up(queryRunner: QueryRunner): Promise<void> {
let tablePrefix = config.get('database.tablePrefix');
const tablePrefixPure = tablePrefix;
const schema = config.get('database.postgresdb.schema');
if (schema) {
tablePrefix = schema + '.' + tablePrefix;
}
await queryRunner.query(`CREATE INDEX IF NOT EXISTS IDX_${tablePrefixPure}33228da131bb1112247cf52a42 ON ${tablePrefix}execution_entity ("stoppedAt") `);
2020-07-26 02:33:20 -07:00
}
2020-07-26 02:33:20 -07:00
async down(queryRunner: QueryRunner): Promise<void> {
const tablePrefix = config.get('database.tablePrefix');
await queryRunner.query(`DROP INDEX IDX_${tablePrefix}33228da131bb1112247cf52a42`);
2020-07-26 02:33:20 -07:00
}
}