mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08: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 a new issue