Class: ActiveRecord::Generators::ModelGenerator
- Defined in:
- activerecord/lib/rails/generators/active_record/model/model_generator.rb
Overview
:nodoc:
Instance Attribute Summary
Attributes included from Rails::Generators::Migration
#migration_class_name, #migration_file_name, #migration_number
Instance Method Summary collapse
-
#create_migration_file ⇒ Object
creates the migration file for the model.
- #create_model_file ⇒ Object
- #create_module_file ⇒ Object
Methods inherited from Base
Methods included from ActiveSupport::Concern
#append_features, #class_methods, extended, #included, #prepend_features, #prepended
Methods included from Rails::Generators::Migration
#create_migration, #migration_template, #set_migration_assigns!
Instance Method Details
#create_migration_file ⇒ Object
creates the migration file for the model.
20 21 22 23 24 |
# File 'activerecord/lib/rails/generators/active_record/model/model_generator.rb', line 20 def create_migration_file return if skip_migration_creation? attributes.each { |a| a..delete(:index) if a.reference? && !a.has_index? } if [:indexes] == false migration_template "../../migration/templates/create_table_migration.rb", File.join(db_migrate_path, "create_#{table_name}.rb") end |