Module: ActiveRecord::Migration::Compatibility::V6_0::TableDefinition
- Defined in:
- activerecord/lib/active_record/migration/compatibility.rb
Instance Method Summary collapse
- #column(name, type, index: nil, **options) ⇒ Object
- #references(*args, **options) ⇒ Object (also: #belongs_to)
Instance Method Details
#column(name, type, index: nil, **options) ⇒ Object
| 241 242 243 244 | # File 'activerecord/lib/active_record/migration/compatibility.rb', line 241 def column(name, type, index: nil, **) [:precision] ||= nil super end | 
#references(*args, **options) ⇒ Object Also known as: belongs_to
| 235 236 237 238 | # File 'activerecord/lib/active_record/migration/compatibility.rb', line 235 def references(*args, **) [:_uses_legacy_reference_index_name] = true super end |