test additions variants table

This commit is contained in:
2025-06-29 22:25:38 -07:00
parent 5bb1110e7f
commit 5cba7de890
9 changed files with 414 additions and 23 deletions

View File

@@ -12,7 +12,7 @@ use Cake\ORM\Entity;
* @property string $name
* @property string|null $product_category_id
* @property string|null $product_id
* @property int $attribute_type_id
* @property int $variant_type_id
* @property bool $enabled
*
* @property \App\Model\Entity\ProductCategory $product_category
@@ -33,7 +33,7 @@ class ProductCategoryVariant extends Entity
'name' => true,
'product_category_id' => true,
'product_id' => true,
'attribute_type_id' => true,
'variant_type_id' => true,
'enabled' => true,
'product_category' => true,
'product' => true,