mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
fix(core): Fix migration (no-changelog) (#5186)
* fix(core): Fix migration (no-changelog) * revert previous fix and apply correct one
This commit is contained in:
parent
8dbe6159d0
commit
e36112a6d4
|
@ -11,7 +11,7 @@ export class DeleteExecutionsWithWorkflows1673268682475 implements MigrationInte
|
|||
await queryRunner.query(`ALTER TABLE \`${tablePrefix}execution_entity\` MODIFY workflowId INT`);
|
||||
|
||||
const workflowIds: Array<{ id: number }> = await queryRunner.query(`
|
||||
SELECT id FROM \`${tablePrefix}execution_entity\`
|
||||
SELECT id FROM \`${tablePrefix}workflow_entity\`
|
||||
`);
|
||||
|
||||
await queryRunner.query(
|
||||
|
|
Loading…
Reference in a new issue