Display message on wait migration run

This commit is contained in:
Jan Oberhauser
2021-08-27 19:40:18 +02:00
parent 5a97dbf4c5
commit b66a56ec3a
3 changed files with 4 additions and 1 deletions

View File

@@ -11,7 +11,8 @@ export class AddwaitTill1626176912946 implements MigrationInterface {
if (schema) {
tablePrefix = schema + '.' + 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" TIMESTAMP`);
await queryRunner.query(`CREATE INDEX IF NOT EXISTS IDX_${tablePrefixPure}ca4a71b47f28ac6ea88293a8e2 ON ${tablePrefix}execution_entity ("waitTill")`);
}