1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-11 13:15:28 +03:00

fix(core): Mark Project.name as non nullable (no-changelog) (#9568)

This commit is contained in:
Danny Martini 2024-05-31 17:10:21 +02:00 committed by GitHub
parent 6582e1d59a
commit 05f50c1926
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 })