diff --git a/packages/cli/src/databases/entities/WorkflowEntity.ts b/packages/cli/src/databases/entities/WorkflowEntity.ts index 3d28a4321b..d27983a1de 100644 --- a/packages/cli/src/databases/entities/WorkflowEntity.ts +++ b/packages/cli/src/databases/entities/WorkflowEntity.ts @@ -66,15 +66,15 @@ export class WorkflowEntity implements IWorkflowDb { @ManyToMany(() => TagEntity, tag => tag.workflows) @JoinTable({ - name: "workflows_tags", // table name for the junction table of this relation - joinColumn: { - name: "workflowId", - referencedColumnName: "id" - }, - inverseJoinColumn: { - name: "tagId", - referencedColumnName: "id" - } + name: "workflows_tags", // table name for the junction table of this relation + joinColumn: { + name: "workflowId", + referencedColumnName: "id", + }, + inverseJoinColumn: { + name: "tagId", + referencedColumnName: "id", + }, }) tags: TagEntity[]; }