Sha256: 2214055dd0335bbf5f360dbdd03dabb07dc32a94cb5fa92d9758b3088ca010d5
Contents?: true
Size: 487 Bytes
Versions: 12
Compression:
Stored size: 487 Bytes
Contents
module Audited module Generators module Migration # Implement the required interface for Rails::Generators::Migration. def next_migration_number(dirname) #:nodoc: next_migration_number = current_migration_number(dirname) + 1 if ::ActiveRecord::Base.timestamped_migrations [Time.now.utc.strftime("%Y%m%d%H%M%S"), "%.14d" % next_migration_number].max else "%.3d" % next_migration_number end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems