123456789_123456789_123456789_123456789_123456789_

Class: ActiveRecord::Migration::Current

Do not use. This class is for internal use only.

Overview

This must be defined before the inherited hook, below

Constant Summary

::ActiveRecord::Migration - Inherited

MigrationFilenameRegexp

Class Attribute Summary

Class Method Summary

Instance Attribute Summary

Instance Method Summary

::ActiveRecord::Migration - Inherited

#announce, #connection, #copy, #down, #exec_migration, #execution_strategy, #method_missing,
#migrate

Execute this migration in the named direction.

#next_migration_number

Determines the version number of the next migration.

#proper_table_name

Finds the correct table name given an Active Record object.

#reversible

Used to specify an operation that can be run in one direction or another.

#revert

Reverses the migration commands for the given block and the given migrations.

#run

Runs the given migration classes.

#say

Takes a message argument and outputs it as is.

#say_with_time

Outputs text along with how long it took to run its block.

#suppress_messages

Takes a block as an argument and suppresses any output generated by the block.

#up,
#up_only

Used to specify an operation that is only run when migrating up (for example, populating a new column with its initial values).

#write, #command_recorder, #execute_block, #format_arguments, #internal_option?, #disable_ddl_transaction,
#table_name_options

Builds a hash for use in #proper_table_name using the Active Record object’s table_name prefix and suffix.

Constructor Details

This class inherits a constructor from ActiveRecord::Migration

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ActiveRecord::Migration

Instance Method Details

#change_table(table_name, **options)

[ GitHub ]

  
# File 'activerecord/lib/active_record/migration.rb', line 572

def change_table(table_name, **options)
  if block_given?
    super { |t| yield compatible_table_definition(t) }
  else
    super
  end
end

#compatible_table_definition(t)

[ GitHub ]

  
# File 'activerecord/lib/active_record/migration.rb', line 596

def compatible_table_definition(t)
  t
end

#create_join_table(table_1, table_2, **options)

[ GitHub ]

  
# File 'activerecord/lib/active_record/migration.rb', line 580

def create_join_table(table_1, table_2, **options)
  if block_given?
    super { |t| yield compatible_table_definition(t) }
  else
    super
  end
end

#create_table(table_name, **options)

[ GitHub ]

  
# File 'activerecord/lib/active_record/migration.rb', line 564

def create_table(table_name, **options)
  if block_given?
    super { |t| yield compatible_table_definition(t) }
  else
    super
  end
end

#drop_table(table_name, **options)

[ GitHub ]

  
# File 'activerecord/lib/active_record/migration.rb', line 588

def drop_table(table_name, **options)
  if block_given?
    super { |t| yield compatible_table_definition(t) }
  else
    super
  end
end