magento 1.5 产品评论存储在哪里?

发布于 2024-11-06 10:45:31 字数 142 浏览 0 评论 0原文

在我的 magento 1.5 网上商店中,我重新创建了一些产品,因为这似乎是将可配置产品转换为简单产品的最简单方法。 无论如何,现在我想将评论转移到新产品,但我在数据库中找不到它们。 有谁知道它们存储在哪里,以便我可以将它们转移到正确的产品?

-谢谢

In my magento 1.5 webshop I've re-created some products because it seemed the easiest way to convert configurable products to simple products.
anyways, now I want to move the reviews to the new products but i cannot find them within the database.
Does anyone know where they are stored so that i can move them to the correct products?

-thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城仅有旧梦在 2024-11-13 10:45:31

您感兴趣的表格是review。该表保存了评论本身和产品之间的关系。 review 表有一个名为 entity_pk_value 的列,该列引用正在审核的产品的主键。

entity_pk_value 列中的值替换为新的产品 ID,并且所有评论都应移动。

The table you're interested in is review. This table holds the relationship between the review itself and the product. The review table has a column named entity_pk_value that references the primary key of the product being reviewed.

Replace the value in the entity_pk_value column with the new product id and all of the reviews should be moved across.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文