-
Notifications
You must be signed in to change notification settings - Fork 197
Open
Labels

Description
Preconditions
- Migrate 1.9.4.2 to Magento 2.3.2
Steps to reproduce
- In Magento 2 create a new downloadable product with downloadable links, make sure it's available and in stock
- Navigate to frontend and try to purchase the product
Expected result
- Product is in stock
Actual result
- Product is not in stock
Additional notes
The default value for the eav attribute links_exist
has changed to null
see Magento\Downloadable\Setup\Patch\Data\UpdateLinksExistDefaultAttributeValue
. The migration tool does not perform this same transformation. I ran
UPDATE eav_attribute set default_value=null where attribute_code='links_exist';
to fix it.
fnogatz, twosg and joeshelton-wagento