Class: ActiveRecord::Generators::Base
- Inherits:
-
Rails::Generators::NamedBase
- Object
- Rails::Generators::NamedBase
- ActiveRecord::Generators::Base
- Includes:
- Rails::Generators::Migration
- Defined in:
- activerecord/lib/rails/generators/active_record.rb
Overview
:nodoc:
Class Method Summary (collapse)
-
+ (Object) base_root
Set the current directory as base for the inherited generators.
-
+ (Object) next_migration_number(dirname)
Implement the required interface for Rails::Generators::Migration.
Class Method Details
+ (Object) base_root
Set the current directory as base for the inherited generators.
12 13 14 |
# File 'activerecord/lib/rails/generators/active_record.rb', line 12 def self.base_root File.dirname(__FILE__) end |
+ (Object) next_migration_number(dirname)
Implement the required interface for Rails::Generators::Migration.
17 18 19 20 21 22 23 24 |
# File 'activerecord/lib/rails/generators/active_record.rb', line 17 def self.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 |