added name to product

This commit is contained in:
hannathkadher
2024-11-20 14:55:32 +04:00
parent 857b02b97b
commit 4a98d94dda

View File

@ -16,6 +16,11 @@ export class ProductEntity extends AbstractEntity<ProductDto> {
})
public prodId: string;
@Column({
nullable: true,
})
public name: string;
@Column({
nullable: false,
})