Sha256: 6426afc09b157e0761f2f79ad59fc08d58cab7cf713a8f44148cb5401e6ebad0
Contents?: true
Size: 490 Bytes
Versions: 273
Compression:
Stored size: 490 Bytes
Contents
module ActiveRecord 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
273 entries across 242 versions & 18 rubygems