我有一个现有网站,其中包含post.title和post.body中的字段。安装Globalize3后,post.title返回空白。有没有办法让我不需要将现有信息迁移到post_translations?
答案 0 :(得分:0)
您可以通过定义数据来迁移此数据,以便在首先创建转换表时迁移数据。
例如
class TranslatePosts < ActiveRecord::Migration
def self.up
Post.create_translation_table!({
:title => :string,
:text => :text
}, {
:migrate_data => true
})
end
def self.down
Post.drop_translation_table! :migrate_data => true
end
end
您必须事先删除现有的帖子翻译表。
答案 1 :(得分:0)