Skip to content
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/
-->
<tests xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/testSchema.xsd">
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Test/etc/testSchema.xsd">
<test name="CreateProductAttributeEntityDateTest">
<annotations>
<features value="Catalog"/>
Expand Down
4 changes: 4 additions & 0 deletions app/code/Magento/Eav/etc/db_schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,10 @@
referenceColumn="attribute_id" onDelete="CASCADE"/>
<constraint xsi:type="foreign" referenceId="EAV_ATTRIBUTE_LABEL_STORE_ID_STORE_STORE_ID" table="eav_attribute_label"
column="store_id" referenceTable="store" referenceColumn="store_id" onDelete="CASCADE"/>
<constraint xsi:type="unique" referenceId="EAV_ATTRIBUTE_LABEL_STORE_ID_ATTRIBUTE_ID">
<column name="store_id"/>
<column name="attribute_id"/>
</constraint>
<index referenceId="EAV_ATTRIBUTE_LABEL_STORE_ID" indexType="btree">
<column name="store_id"/>
</index>
Expand Down
3 changes: 2 additions & 1 deletion app/code/Magento/Eav/etc/db_schema_whitelist.json
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,8 @@
"constraint": {
"PRIMARY": true,
"EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID": true,
"EAV_ATTRIBUTE_LABEL_STORE_ID_STORE_STORE_ID": true
"EAV_ATTRIBUTE_LABEL_STORE_ID_STORE_STORE_ID": true,
"EAV_ATTRIBUTE_LABEL_STORE_ID_ATTRIBUTE_ID": true
}
},
"eav_form_type": {
Expand Down