👕 Appease linter

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

View file

@ -69,12 +69,12 @@ export class WorkflowEntity implements IWorkflowDb {
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[];
} }