Class: ActiveRecord::Generators::ModelGenerator
- Inherits:
-
Base
- Object
- Rails::Generators::NamedBase
- Base
- ActiveRecord::Generators::ModelGenerator
- Defined in:
- lib/rails/generators/active_record/model/model_generator.rb
Overview
:nodoc:
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
Instance Method Details
#create_migration_file ⇒ Object
creates the migration file for the model.
25 26 27 28 29 |
# File 'lib/rails/generators/active_record/model/model_generator.rb', line 25 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 "create_table_migration.rb", File.join(db_migrate_path, "create_#{table_name}.rb") end |
#create_model_file ⇒ Object
31 32 33 34 |
# File 'lib/rails/generators/active_record/model/model_generator.rb', line 31 def create_model_file generate_abstract_class if database && !custom_parent? template "model.rb", File.join("app/models", class_path, "#{file_name}.rb") end |
#create_module_file ⇒ Object
36 37 38 39 |
# File 'lib/rails/generators/active_record/model/model_generator.rb', line 36 def create_module_file return if regular_class_path.empty? template "module.rb", File.join("app/models", "#{class_path.join('/')}.rb") if behavior == :invoke end |