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