👕 Appease linter

This commit is contained in:
Iván Ovejero 2021-04-06 18:09:22 +02:00
parent 71a8ff21ef
commit cc691c2ab0

View file

@ -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[];
}