Class: ActiveRecord::Migration::Compatibility::V6_0

Inherits:
V6_1
  • Object
show all
Defined in:
lib/active_record/migration/compatibility.rb

Direct Known Subclasses

V5_2

Defined Under Namespace

Modules: SQLite3, TableDefinition Classes: ReferenceDefinition

Instance Method Summary collapse

Instance Method Details

#add_reference(table_name, ref_name, **options) ⇒ Object Also known as: add_belongs_to



74
75
76
77
78
79
80
81
82
# File 'lib/active_record/migration/compatibility.rb', line 74

def add_reference(table_name, ref_name, **options)
  if connection.adapter_name == "SQLite"
    reference_definition = ReferenceDefinition.new(ref_name, type: :integer, **options)
  else
    reference_definition = ReferenceDefinition.new(ref_name, **options)
  end

  reference_definition.add_to(connection.update_table_definition(table_name, self))
end

#change_table(table_name, **options) ⇒ Object



58
59
60
61
62
63
64
# File 'lib/active_record/migration/compatibility.rb', line 58

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

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



66
67
68
69
70
71
72
# File 'lib/active_record/migration/compatibility.rb', line 66

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



50
51
52
53
54
55
56
# File 'lib/active_record/migration/compatibility.rb', line 50

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