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

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