added description

This commit is contained in:
hannathkadher
2024-12-09 11:24:28 +04:00
parent acbd5d53f1
commit 54228c24eb
2 changed files with 12 additions and 9 deletions

View File

@ -17,6 +17,9 @@ export class ProjectEntity extends AbstractEntity<ProjectDto> {
})
public name: string;
@Column({ length: 255, nullable: true })
description: string;
constructor(partial: Partial<ProjectEntity>) {
super();
Object.assign(this, partial);