Module: ActiveRecord::Migration::Compatibility::V6_0::SQLite3::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
34 35 36 37 |
# File 'lib/active_record/migration/compatibility.rb', line 34 def column(name, type, index: nil, **) [:precision] ||= nil super end |
#references(*args, **options) ⇒ Object Also known as: belongs_to
27 28 29 30 31 |
# File 'lib/active_record/migration/compatibility.rb', line 27 def references(*args, **) args.each do |ref_name| ReferenceDefinition.new(ref_name, type: :integer, **).add_to(self) end end |