mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-26 06:17:21 +02:00
fix(core): Mark Project.name as non nullable (no-changelog) (#9568)
This commit is contained in:
parent
6582e1d59a
commit
05f50c1926
|
|
@ -8,7 +8,7 @@ export type ProjectType = 'personal' | 'team';
|
|||
|
||||
@Entity()
|
||||
export class Project extends WithTimestampsAndStringId {
|
||||
@Column({ length: 255, nullable: true })
|
||||
@Column({ length: 255 })
|
||||
name: string;
|
||||
|
||||
@Column({ length: 36 })
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user