Module: ActiveRecord::Migration::Compatibility::V5_0::TableDefinition
- Defined in:
- lib/active_record/migration/compatibility.rb
Instance Method Summary collapse
- #primary_key(name, type = :primary_key, **options) ⇒ Object
- #references(*args, **options) ⇒ Object (also: #belongs_to)
Instance Method Details
#primary_key(name, type = :primary_key, **options) ⇒ Object
41 42 43 44 |
# File 'lib/active_record/migration/compatibility.rb', line 41 def primary_key(name, type = :primary_key, **) type = :integer if type == :primary_key super end |
#references(*args, **options) ⇒ Object Also known as: belongs_to
46 47 48 |
# File 'lib/active_record/migration/compatibility.rb', line 46 def references(*args, **) super(*args, type: :integer, **) end |