fix: Fix formatting/linting for CI (no-changelog) (#5264)

* ⬆️ Upgrade Prettier

* 📦 Update `pnpm-lock.yaml`

* 🎨 Format all packages

* 🔧 Specify `prettierPath`
This commit is contained in:
Iván Ovejero
2023-01-27 10:18:15 +01:00
committed by GitHub
parent b321c5e4ec
commit 0a7ea89633
21 changed files with 318 additions and 333 deletions

View File

@@ -21,8 +21,6 @@ export class AddTriggerCountColumn1669823906994 implements MigrationInterface {
async down(queryRunner: QueryRunner): Promise<void> {
const tablePrefix = config.getEnv('database.tablePrefix');
await queryRunner.query(
`ALTER TABLE ${tablePrefix}workflow_entity DROP COLUMN triggerCount`,
);
await queryRunner.query(`ALTER TABLE ${tablePrefix}workflow_entity DROP COLUMN triggerCount`);
}
}

View File

@@ -32,9 +32,7 @@ export class RemoveWorkflowDataLoadedFlag1671726148420 implements MigrationInter
return undefined;
});
await queryRunner.query(
`ALTER TABLE ${tablePrefix}workflow_entity DROP COLUMN dataLoaded`,
);
await queryRunner.query(`ALTER TABLE ${tablePrefix}workflow_entity DROP COLUMN dataLoaded`);
logMigrationEnd(this.name);
}