目前正在使用magento项目.. 我坚持这一点.. 这是管理员添加任何子类别/类别时 由
管理类别 - >客户设计
这里给出了两个选项,如
有效和有效 .. 任何知道magento数据库的人都可以告诉我这两个值存储在哪个或哪个表中
感谢您的任何建议或帮助!
答案 0 :(得分:2)
我在下面列出了目录类别的属性。由于类别是EAV类型,因此您需要查看特定的子表以获取您的值。在这种情况下,custom_design_from
和custom_design_to
是日期时间值,实体名称为catalog_category_entity
,因此您想要的表格为catalog_category_entity_datetime
。
您将找到的下一个问题是获取正确的属性ID。由于它们可能会发生变化,因此运行SQL查询以获取它们:
select attribute_id, attribute_code from eav_attribute where entity_type_id = 3 and attribute_code in ('custom_design_from', 'custom_design_to');
我得到52和53,但是YMWV。希望有所帮助!
谢谢, 乔
+----------------------+--------------+
| attribute_code | backend_type |
+----------------------+--------------+
| name | varchar |
| is_active | int |
| url_key | varchar |
| description | text |
| image | varchar |
| meta_title | varchar |
| meta_keywords | text |
| meta_description | text |
| display_mode | varchar |
| landing_page | int |
| is_anchor | int |
| path | static |
| position | static |
| all_children | text |
| path_in_store | text |
| children | text |
| url_path | varchar |
| custom_design | varchar |
| custom_design_apply | int |
| custom_design_from | datetime |
| custom_design_to | datetime |
| page_layout | varchar |
| custom_layout_update | text |
| level | static |
| children_count | static |
| available_sort_by | text |
| default_sort_by | varchar |
| include_in_menu | int |
+----------------------+--------------+
答案 1 :(得分:0)
Active from is an attribute whose attribute_code is custom_design_from(attribute_id 57) and Active To is an attribute whose attribute_code(attribute_id 58) is custom_design_to.
This both attributes value are stored in database table `catalog_category_entity_datetime`.
检查上面的行,类似于entity_id的值是你的类别id,attribute_id是57,并且值的活动存储在表的value
字段中,同样有效的值存储在value
字段中,带有entity_id是您的类别ID,attribute_id是58。