refactor(products): remove brand field from Product model and update related DTO and service

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Nils-Johan Gynther
2026-05-03 16:01:09 +02:00
parent dbd8c6d849
commit 87eff6a37f
4 changed files with 2 additions and 12 deletions
@@ -22,11 +22,6 @@ export class UpdateProductDto {
@MaxLength(191)
subcategory?: string;
@IsOptional()
@IsString()
@MaxLength(191)
brand?: string;
@IsOptional()
@IsNumber()
categoryId?: number | null;