Module: ActiveRecord::Migration::Compatibility::V6_0::TableDefinition
- Defined in:
- 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
119 120 121 122 |
# File 'lib/active_record/migration/compatibility.rb', line 119 def column(name, type, index: nil, **) [:precision] ||= nil super end |
#references(*args, **options) ⇒ Object Also known as: belongs_to
112 113 114 115 116 |
# File 'lib/active_record/migration/compatibility.rb', line 112 def references(*args, **) args.each do |ref_name| ReferenceDefinition.new(ref_name, **).add_to(self) end end |