Class: ActiveRecord::Generators::ModelGenerator
- Inherits:
-
Base
- Object
- Thor::Group
- Rails::Generators::Base
- Rails::Generators::NamedBase
- Base
- ActiveRecord::Generators::ModelGenerator
- Defined in:
- activerecord/lib/rails/generators/active_record/model/model_generator.rb
Instance Attribute Summary
Attributes included from Rails::Generators::Migration
#migration_class_name, #migration_file_name, #migration_number
Instance Method Summary collapse
- #accessible_attributes ⇒ Object
- #attributes_with_index ⇒ Object
- #create_migration_file ⇒ Object
- #create_model_file ⇒ Object
- #create_module_file ⇒ Object
Methods inherited from Base
base_root, next_migration_number
Methods included from Migration
Methods included from Rails::Generators::Migration
Methods inherited from Rails::Generators::NamedBase
Methods inherited from Rails::Generators::Base
base_root, class_option, default_source_root, desc, hook_for, inherited, namespace, remove_hook_for, source_root
Methods included from Rails::Generators::Actions
#add_source, #capify!, #environment, #gem, #gem_group, #generate, #git, #initializer, #lib, #plugin, #rake, #rakefile, #readme, #route, #vendor
Constructor Details
This class inherits a constructor from Rails::Generators::NamedBase
Instance Method Details
#accessible_attributes ⇒ Object
33 34 35 |
# File 'activerecord/lib/rails/generators/active_record/model/model_generator.rb', line 33 def accessible_attributes attributes.reject(&:reference?) end |
#attributes_with_index ⇒ Object
29 30 31 |
# File 'activerecord/lib/rails/generators/active_record/model/model_generator.rb', line 29 def attributes_with_index attributes.select { |a| a.has_index? || (a.reference? && [:indexes]) } end |
#create_migration_file ⇒ Object
15 16 17 18 |
# File 'activerecord/lib/rails/generators/active_record/model/model_generator.rb', line 15 def create_migration_file return unless [:migration] && [:parent].nil? migration_template "migration.rb", "db/migrate/create_#{table_name}.rb" end |