product sku property name on sku variant values
CI / testsuite (mysql, 8.4, ) (push) Successful in 10m19s Details
CI / testsuite (mysql, 8.2, ) (push) Failing after 23m45s Details
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Failing after 6m10s Details
CI / Coding Standard & Static Analysis (push) Failing after 5m52s Details

This commit is contained in:
Brandon Shipley 2025-10-07 01:21:04 -07:00
parent 44130c0cd2
commit 8e2165d991
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
2 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class ProductSkuVariantValue extends Entity
'product_category_variant_option_id' => true,
// entities
'product_skus' => true,
'product_sku' => true,
'product_variant' => true,
'product_category_variant_option' => true,
];

View File

@ -54,6 +54,7 @@ class ProductSkuVariantValuesTable extends Table
$this->belongsTo('ProductSkus', [
'className' => 'CakeProducts.ProductSkus',
'foreignKey' => 'product_sku_id',
'propertyName' => 'product_sku',
'joinType' => 'INNER',
]);
$this->belongsTo('ProductVariants', [