You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def check_pending!(connection = ::ActiveRecord::Base.connection)
raise ActiveRecord::PendingMigrationError if DataMigrator::Migrator.needs_migration?(connection)
end
The text was updated successfully, but these errors were encountered:
I think I found a small typo in
DataMigrate::Migration.check_pending!
(located in/lib/data_migrate/migration.rb
)DataMigrator::Migrator
should beDataMigrator::DataMigrator
So this:
data-migrate/lib/data_migrate/migration.rb
Lines 5 to 7 in 1db042b
should be:
The text was updated successfully, but these errors were encountered: