accessible field/entity update default ksu
This commit is contained in:
parent
25957f7d8b
commit
75714137b7
|
@ -18,6 +18,7 @@ use Cake\ORM\Entity;
|
|||
* @property DateTime $created
|
||||
* @property DateTime|null $modified
|
||||
* @property DateTime|null $deleted
|
||||
* @property bool $default_sku
|
||||
*
|
||||
* @property Product $product
|
||||
* @property ProductSkuVariantValue[] $product_sku_variant_values
|
||||
|
@ -42,6 +43,7 @@ class ProductSku extends Entity
|
|||
'created' => true,
|
||||
'modified' => true,
|
||||
'deleted' => true,
|
||||
'default_sku' => true,
|
||||
|
||||
// entities
|
||||
'product' => false,
|
||||
|
|
Loading…
Reference in New Issue