- integrating vocagame supplier

This commit is contained in:
2023-09-20 22:07:06 +07:00
parent 8f731226ee
commit 28f98de87c
4 changed files with 136 additions and 7 deletions

View File

@@ -16,6 +16,11 @@ export class ProductSubCategories extends BaseModel {
})
code: string;
@Column({
nullable: true,
})
code_voca: string;
@ManyToOne(() => ProductCategories, (categories) => categories.sub_categories)
category: ProductCategories;