我想从Magento数据库中删除 eav_attribute 表。
我正在#1217 - Cannot delete or update a parent row: a foreign key constraint fails
如何安全删除它?
答案 0 :(得分:0)
你在这里的浅冰上行走
删除表格很可能会破坏您的网站。该表有外键,例如来自catalog_eav_attribute
和customer_eav_attribute
。此外,所有包含属性值的表都链接到eav_attribute
例如catalog_product_entity_int
如果要添加或更新该表中的属性,您应该找到另一种方法。就像使用安装脚本一样,您使用'$ this-> addAttribute'或$this->updateAttribute
。