Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 1.28 KB

2020-12-07-create-dal-for-search-configuration.md

File metadata and controls

15 lines (15 loc) · 1.28 KB
title issue
Create DAL and migration database for search configuration
NEXT-12490

Core

  • Added two new tables product_search_config and product_search_config_field to stored product searching config data and create the default data for them.
  • Added entities, definition and collection for table product_search_config at Shopware\Core\Content\Product\Aggregate\ProductSearchConfig.
  • Added entities, definition and collection for table product_search_config_field at Shopware\Core\Content\Product\Aggregate\ProductSearchConfigField.
  • Added ProductSearchConfigExceptionHandler at Shopware\Core\Content\Product\Aggregate\ProductSearchConfig.
  • Added ProductSearchConfigFieldExceptionHandler at Shopware\Core\Content\Product\Aggregate\ProductSearchConfigField.
  • Added DuplicateProductSearchConfigFieldException and DuplicateProductSearchConfigLanguageException at Shopware\Core\Content\Product\Exception.
  • Added OneToOne association between language and product_search_config.
  • Added OneToMany association between customer_field and product_search_config_field.
  • Added new property productSearchConfig to Shopware\Core\System\Language\LanguageEntity.
  • Added new property productSearchConfigFields to Shopware\Core\System\CustomField\CustomFieldEntity.