Globalize3 gem的文档清楚地表明了如何创建转换表,但是我没有看到有关如何在以后的迁移过程中将字段添加到转换表的任何信息.例如,我最初包括Category.create_translation_table! :name => :我创建Category模型时的字符串.但是,现在我需要将一个已翻译的字段添加到模型中.
如何使用Rails迁移执行此操作?我没有看到任何关于alter_translation_table的文档!方法或类似的东西……
解决方法
使用Globalize4,只需:
class AddHintToCategory < ActiveRecord::Migration def up Category.add_translation_fields! hint: :text end def down remove_column :category_translations,:hint end end
不要忘记在模型中添加新字段:
translate :name,:hint