Class: ActiveRecord::Generators::MigrationGenerator

Inherits:
Base
  • Object
show all
Defined in:
activerecord/lib/rails/generators/active_record/migration/migration_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

Methods inherited from Base

base_root

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_fileObject



14
15
16
17
18
# File 'activerecord/lib/rails/generators/active_record/migration/migration_generator.rb', line 14

def create_migration_file
  set_local_assigns!
  validate_file_name!
  migration_template @migration_template, File.join(db_migrate_path, "#{file_name}.rb")
end