make it nullable for now

This commit is contained in:
hannathkadher
2024-12-10 09:49:58 +04:00
parent 476e5cf9ac
commit c0ef1546ab

View File

@ -34,7 +34,7 @@ export class CommunityEntity extends AbstractEntity<CommunityDto> {
externalId: string;
@ManyToOne(() => ProjectEntity, (project) => project.communities, {
nullable: false,
nullable: true,
})
project: ProjectEntity;
}