Skip to content

Commit

Permalink
Do not set default value in entity
Browse files Browse the repository at this point in the history
  • Loading branch information
RicardoE105 committed Feb 5, 2025
1 parent 591638b commit 157002c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/databases/entities/workflow-entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class WorkflowEntity extends WithTimestampsAndStringId implements IWorkfl
onDelete: 'SET NULL',
})
@JoinColumn({ name: 'folderId' })
folder: Folder | null = null;
folder: Folder;

display() {
return `"${this.name}" (ID: ${this.id})`;
Expand Down

0 comments on commit 157002c

Please sign in to comment.