Magento 修改/添加列到模型资源
我有一个模块,我可能需要在其平面表中添加列和从中删除列。我知道这可以在设置中完成,但我必须每晚从网络服务将数据导入表中。 Web 服务有时可能会更改其列名称。
首先,有谁知道如何在不使用原始 SQL 的情况下更改 Magento 中的表结构?其次,有谁知道最好的方法吗?
我还没有掌握 Magento 中使用的 EAV 数据模式,但有一天我想学习。任何帮助表示赞赏。
I have a module whose flat table I may need to add columns to and remove columns from. I know this can be done in setup, but I have to import data into the table nightly from a web service. The web service may occasionally change their column names.
First of all, does anyone know how to alter table structure in Magento without using raw SQL? Second, does anyone know the best way to do this?
I haven't yet mastered the EAV data pattern used in Magento but would someday like to learn. Any help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不久前我也有同样的想法(或类似的想法)。
在不使用 SQL 的情况下在 Magento 设置脚本中更改表
Ivan 的回答特别好,我仍然经常参考它。这是必不可少的阅读。
I had the same thought (or similar) a while ago.
ALTER TABLE in Magento setup script without using SQL
Ivan's answer was particularly good and I still refer to it often. It is essential reading.