fixed null issue

This commit is contained in:
faris Aljohari
2024-12-23 00:00:19 -06:00
parent eec38548ec
commit 5cae090b9a

View File

@ -22,7 +22,7 @@ export class SpaceProductEntity extends AbstractEntity<SpaceProductEntity> {
product: ProductEntity; product: ProductEntity;
@Column({ @Column({
nullable: false, nullable: true,
type: 'int', type: 'int',
}) })
productCount: number; productCount: number;