You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The module seems broken when table prefixes are configured.
error on setup:upgrade:
Base table or view not found: 1146 Table 'magento.catalog_category_entity' doesn't exist, query was: INSERT INTO lei_catalog_category_entity_int (attribute_id, entity_id, value) SELECT 131 as attrib
ute_id, catalog_category_entity.entity_id, 1 as value FROM catalog_category_entity ON DUPLICATE KEY UPDATE attribute_id = VALUES(attribute_id), entity_id = VALUES(entity_id), value = VALUES(value)
I searched around and the problem occurs in updateAttributeDefaultValue (InstallData.php), where the insertFromSelect produces the illegal query.
The text was updated successfully, but these errors were encountered:
The module seems broken when table prefixes are configured.
error on setup:upgrade:
Base table or view not found: 1146 Table 'magento.catalog_category_entity' doesn't exist, query was: INSERT INTO
lei_catalog_category_entity_int
(attribute_id
,entity_id
,value
) SELECT 131 as attribute_id,
catalog_category_entity
.entity_id
, 1 as value FROMcatalog_category_entity
ON DUPLICATE KEY UPDATEattribute_id
= VALUES(attribute_id
),entity_id
= VALUES(entity_id
),value
= VALUES(value
)I searched around and the problem occurs in updateAttributeDefaultValue (InstallData.php), where the insertFromSelect produces the illegal query.
The text was updated successfully, but these errors were encountered: