数据库中的magento属性
我正在将 Magento 1.3.2.2 商店迁移到另一个平台。我正在尝试获取所有存储为文本值的产品属性。
我无法弄清楚该数据保存在哪个表中。我似乎到处都看过。我有 Magento 网站上的数据库图,但它对我没有帮助。
谢谢。
事实证明我正在寻找的是:
catalog_product_entity_varchar
where eav_attribute.is_user_defined=1
I'm in the process of migrating our Magento 1.3.2.2 store to another platform. I'm trying to get all of the product attributes that are stored as text values.
I can't figure out which table this data is held. I've looked everywhere it seems. I have the db diagram from Magento's website, but it's not helping me.
Thanks.
It turns out what I was looking for was:
catalog_product_entity_varchar
where eav_attribute.is_user_defined=1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这句话
尚不清楚。不过,您可以通过以下方法追踪任何信息在 LAMP 堆栈应用程序中的存储位置。
在开发环境中(即您的本地计算机):
使用旧的单独插入格式将数据库转储到磁盘
在应用程序中,更改您要查找的数据的值。
再次将数据转储到磁盘
使用您最喜欢的比较工具,比较数据库转储。
这将指出操作后需要的额外插入,进而让您知道哪些表包含您想要的信息。
The phrase
is unclear. However, here's how you can track down where any information is stores in a LAMP stack application.
In a development environment (i.e. your local machine):
Dump your database out to disk using the old, individual insert format
In the application, change the value of the data you're looking for.
Dump your data out to disk again
Using your favorite diff tool, diff the database dumps.
This will point out extra inserts needed after your operation, which in turn will let you know which tables contain the information you're after.