Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Look in the correct places for migrations to determine the deployment…
…_status Our schema migrations don't live in db/migrate, they live in the manageiq-schema gem. So we were incorrectly reporting that we don't have any migrations that need to be run. irb(main):001:0> ActiveRecord::MigrationContext.new('db/migrate').migrations.length => 0 irb(main):002:0> ActiveRecord::MigrationContext.new(Rails.application.config.paths["db/migrate"]).migrations.length => 844
- Loading branch information