Method: ActiveRecord::ConnectionAdapters::SQLite3Adapter#add_reference
- Defined in:
- lib/active_record/connection_adapters/sqlite3_adapter.rb
#add_reference(table_name, ref_name, **options) ⇒ Object Also known as: add_belongs_to
:nodoc:
286 287 288 |
# File 'lib/active_record/connection_adapters/sqlite3_adapter.rb', line 286 def add_reference(table_name, ref_name, **) # :nodoc: super(table_name, ref_name, type: :integer, **) end |