在 Rails 5 版本以上的情况下,可以在 test/test_helper.rb 文件中加入以下代码:
if Rails::VERSION::MAJOR >= 5 module ActiveRecord class Migration def self.maintain_test_schema!(*args) schema_path = "#{Rails.root}/db/schema.rb" if File.exist?(schema_path) load(schema_path) else ::ActiveRecord::Migration.drop_table('schema_migrations', if_exists: true) end end end end end
这段代码的作用是覆盖掉 ActiveRecord 的 maintain_test_schema! 方法,改为从 schema.rb 中加载模式。当 schema.rb 文件不存在时,它会删除 schema_migrations 表(如果存在)。这种方法可以避免 maintain_test_schema! 方法在执行过程中的奇怪行为。