有谁知道如何解决此弃用问题?我已经包含了弃用警告和违规迁移文件。
DEPRECATION WARNING:不推荐使用ActiveRecord :: Migrator.proper_table_name,它将在Rails 4.2中删除。请改用ActiveRecord :: Migration上的proper_table_name实例方法。 (从项目变更调用/ db / migrate / 20141010204446_add_state_to_uploads.rb:4)
# db/migrate/20141010204446_add_state_to_uploads.rb
class AddStateToUploads < ActiveRecord::Migration
def change
add_column :uploads, :state, :string, index: true
add_index :uploads, :state
end
end
引用:
答案 0 :(得分:2)
当您升级到Rails 4.2时,只需使用ActiveRecord :: Migration.proper_table_name。 显然,4.0或4.1中没有警告消息的解决方案。