mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
* ⚡ Set path alias for config * ⚡ Update config export * ⚡ Simplify config imports * ⚡ Update also additional imports * ⚡ Update path in collation migration * ⚡ Resolve aliased paths * 👕 Fix Codacy issue * 👕 Retry to fix Codacy issue Co-authored-by: Jan <janober@users.noreply.github.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
22 lines
709 B
TypeScript
22 lines
709 B
TypeScript
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
import { config } from '@config';
|
|
|
|
export class MakeStoppedAtNullable1607431743768 implements MigrationInterface {
|
|
name = 'MakeStoppedAtNullable1607431743768';
|
|
|
|
async up(queryRunner: QueryRunner): Promise<void> {
|
|
let tablePrefix = config.get('database.tablePrefix');
|
|
const schema = config.get('database.postgresdb.schema');
|
|
if (schema) {
|
|
tablePrefix = schema + '.' + tablePrefix;
|
|
}
|
|
await queryRunner.query('ALTER TABLE ' + tablePrefix + 'execution_entity ALTER COLUMN "stoppedAt" DROP NOT NULL', undefined);
|
|
}
|
|
|
|
async down(queryRunner: QueryRunner): Promise<void> {
|
|
// Cannot be undone as column might already have null values
|
|
}
|
|
|
|
}
|