Class: ActiveRecord::Migration::Current

Inherits:
ActiveRecord::Migration show all
Defined in:
lib/active_record/migration.rb

Overview

This must be defined before the inherited hook, below

Direct Known Subclasses

Schema

Constant Summary

Constants inherited from ActiveRecord::Migration

MigrationFilenameRegexp

Instance Attribute Summary

Attributes inherited from ActiveRecord::Migration

#name, #version

Instance Method Summary collapse

Methods inherited from ActiveRecord::Migration

[], #announce, check_all_pending!, check_pending!, check_pending_migrations, #connection, #copy, current_version, #disable_ddl_transaction, disable_ddl_transaction!, #down, #exec_migration, #execution_strategy, inherited, #initialize, load_schema_if_pending!, maintain_test_schema!, method_missing, #method_missing, migrate, #migrate, nearest_delegate, #next_migration_number, #proper_table_name, #reversible, #revert, #reverting?, #run, #say, #say_with_time, #suppress_messages, #table_name_options, #up, #up_only, valid_version_format?, #write

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) ⇒ Object



572
573
574
575
576
577
578
# File '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) ⇒ Object



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

def compatible_table_definition(t)
  t
end

#create_join_table(table_1, table_2, **options) ⇒ Object



580
581
582
583
584
585
586
# File '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) ⇒ Object

:nodoc:



564
565
566
567
568
569
570
# File '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) ⇒ Object



588
589
590
591
592
593
594
# File '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