如何指定转换表中列的列大小?
从自述文件中:
Post.create_translation_table! :title => :string, :text => :text如何在:limit => 37337中工作?
我试过了
Post.create_translation_table! :title => :string, :limit => 1000, :text => :text但这并不管用
使用Rails3+ globalize3 0.1.0.beta
发布于 2012-04-06 00:29:55
Post.create_translation_table!:title =>{ :type=> :string,:limit => 1000},:text => :text
https://stackoverflow.com/questions/5707991
复制相似问题