Module: ActiveRecord::Generators::Migration
- Included in:
- Base
- Defined in:
- lib/rails/generators/active_record/migration.rb
Instance Method Summary collapse
-
#next_migration_number(dirname) ⇒ Object
Implement the required interface for Rails::Generators::Migration.
Instance Method Details
#next_migration_number(dirname) ⇒ Object
Implement the required interface for Rails::Generators::Migration.
5 6 7 8 9 10 11 12 |
# File 'lib/rails/generators/active_record/migration.rb', line 5 def next_migration_number(dirname) #:nodoc: next_migration_number = current_migration_number(dirname) + 1 if ActiveRecord::Base. [Time.now.utc.strftime("%Y%m%d%H%M%S"), "%.14d" % next_migration_number].max else "%.3d" % next_migration_number end end |