Class: ActiveRecord::Generators::MigrationGenerator

Inherits:
Base 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, next_migration_number

Methods included from Rails::Generators::Migration

#migration_template

Methods included from ActiveSupport::Concern

#append_features, extended, #included

Methods inherited from Rails::Generators::NamedBase

#initialize

Methods inherited from Rails::Generators::Base

base_root, class_option, default_source_root, desc, hide!, hook_for, inherited, namespace, remove_hook_for, source_root

Methods included from Rails::Generators::Actions

#add_source, #capify!, #environment, #gem, #gem_group, #generate, #git, #initialize, #initializer, #lib, #rake, #rakefile, #readme, #route, #vendor

Constructor Details

This class inherits a constructor from Rails::Generators::NamedBase

Instance Method Details

#create_migration_fileObject



8
9
10
11
12
# File 'activerecord/lib/rails/generators/active_record/migration/migration_generator.rb', line 8

def create_migration_file
  set_local_assigns!
  validate_file_name!
  migration_template @migration_template, "db/migrate/#{file_name}.rb"
end