mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
👕 Appease linter
This commit is contained in:
parent
71a8ff21ef
commit
cc691c2ab0
|
@ -66,15 +66,15 @@ export class WorkflowEntity implements IWorkflowDb {
|
||||||
|
|
||||||
@ManyToMany(() => TagEntity, tag => tag.workflows)
|
@ManyToMany(() => TagEntity, tag => tag.workflows)
|
||||||
@JoinTable({
|
@JoinTable({
|
||||||
name: "workflows_tags", // table name for the junction table of this relation
|
name: "workflows_tags", // table name for the junction table of this relation
|
||||||
joinColumn: {
|
joinColumn: {
|
||||||
name: "workflowId",
|
name: "workflowId",
|
||||||
referencedColumnName: "id"
|
referencedColumnName: "id",
|
||||||
},
|
},
|
||||||
inverseJoinColumn: {
|
inverseJoinColumn: {
|
||||||
name: "tagId",
|
name: "tagId",
|
||||||
referencedColumnName: "id"
|
referencedColumnName: "id",
|
||||||
}
|
},
|
||||||
})
|
})
|
||||||
tags: TagEntity[];
|
tags: TagEntity[];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue