Skip to content

Commit

Permalink
Make product SKU not null
Browse files Browse the repository at this point in the history
  • Loading branch information
ihor-sviziev committed Mar 17, 2021
1 parent 592c792 commit a369d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/Magento/Catalog/etc/db_schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<column xsi:type="smallint" name="attribute_set_id" unsigned="true" nullable="false"
identity="false" default="0" comment="Attribute Set ID"/>
<column xsi:type="varchar" name="type_id" nullable="false" length="32" default="simple" comment="Type ID"/>
<column xsi:type="varchar" name="sku" nullable="true" length="64" comment="SKU"/>
<column xsi:type="varchar" name="sku" nullable="false" length="64" comment="SKU"/>
<column xsi:type="smallint" name="has_options" unsigned="false" nullable="false" identity="false"
default="0" comment="Has Options"/>
<column xsi:type="smallint" name="required_options" unsigned="true" nullable="false"
Expand Down

0 comments on commit a369d5a

Please sign in to comment.