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: TableDefinition Classes: ReferenceDefinition

Instance Method Summary collapse

Methods inherited from V6_1

#add_column, #change_column

Instance Method Details

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



114
115
116
117
118
119
120
121
# File 'lib/active_record/migration/compatibility.rb', line 114

def add_reference(table_name, ref_name, **options)
  if connection.adapter_name == "SQLite"
    options[:type] = :integer
  end

  options[:_uses_legacy_reference_index_name] = true
  super
end