Module: MicroService::Server::NextMigrationVersion
- Included in:
- ActiveRecordGenerator
- Defined in:
- lib/generators/micro_service/server/next_migration_version.rb
Instance Method Summary collapse
-
#next_migration_number(dirname) ⇒ Object
while methods have moved around this has been the implementation since ActiveRecord 3.0.
Instance Method Details
#next_migration_number(dirname) ⇒ Object
while methods have moved around this has been the implementation since ActiveRecord 3.0
6 7 8 9 10 11 12 13 |
# File 'lib/generators/micro_service/server/next_migration_version.rb', line 6 def next_migration_number(dirname) next_migration_number = current_migration_number(dirname) + 1 if ::ActiveRecord::Base. [Time.now.utc.strftime("%Y%m%d%H%M%S"), format("%.14d", next_migration_number)].max else format("%.3d", next_migration_number) end end |