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)
|
||||
@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[];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue