accessible field/entity update default ksu
CI / testsuite (mysql, 8.4, ) (push) Waiting to run Details
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Waiting to run Details
CI / Coding Standard & Static Analysis (push) Waiting to run Details
CI / testsuite (mysql, 8.2, ) (push) Has been cancelled Details

This commit is contained in:
Brandon Shipley 2025-10-06 23:34:27 -07:00
parent 25957f7d8b
commit 75714137b7
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ use Cake\ORM\Entity;
* @property DateTime $created * @property DateTime $created
* @property DateTime|null $modified * @property DateTime|null $modified
* @property DateTime|null $deleted * @property DateTime|null $deleted
* @property bool $default_sku
* *
* @property Product $product * @property Product $product
* @property ProductSkuVariantValue[] $product_sku_variant_values * @property ProductSkuVariantValue[] $product_sku_variant_values
@ -42,6 +43,7 @@ class ProductSku extends Entity
'created' => true, 'created' => true,
'modified' => true, 'modified' => true,
'deleted' => true, 'deleted' => true,
'default_sku' => true,
// entities // entities
'product' => false, 'product' => false,