Sha256: 4b2c220c5c0c6f8b0fee113ae5a9d748933fa4605eabb6f49d60583fed726714
Contents?: true
Size: 391 Bytes
Versions: 17
Compression:
Stored size: 391 Bytes
Contents
require "rails/generators/active_record" require "active_record/migration" module Mobility module ActiveRecordMigrationCompatibility def activerecord_migration_class if ::ActiveRecord::Migration.respond_to?(:current_version) "ActiveRecord::Migration[#{::ActiveRecord::Migration.current_version}]" else "ActiveRecord::Migration" end end end end
Version data entries
17 entries across 17 versions & 1 rubygems