method
references
v3.0.0 -
Show latest stable
-
1 note -
Class: ActiveRecord::ConnectionAdapters::Table
- 1.0.0
- 1.1.0
- 1.1.1
- 1.1.6
- 1.2.0
- 1.2.6
- 2.0.0
- 2.0.1
- 2.0.3
- 2.1.0 (0)
- 2.2.1 (0)
- 2.3.2 (0)
- 2.3.8 (0)
- 3.0.0 (0)
- 3.0.5 (0)
- 3.0.7 (0)
- 3.0.9 (-11)
- 3.1.0 (38)
- 3.2.1 (0)
- 3.2.3 (0)
- 3.2.8 (0)
- 3.2.13 (0)
- What's this?
references(*args)
public
Adds a reference. Optionally adds a type column. references and belongs_to are acceptable.
Examples
t.references(:goat) t.references(:goat, :polymorphic => true) t.belongs_to(:goat)
Register or
log in
to add new notes.
avit -
August 22, 2008
4 thanks
Doesn't add an index
Typically you will want to have an index on foreign keys but this method doesn’t assume that. Outside of the create_table block you should follow this with add_index :
add_index :table_name, :goat_id # and, if polymorphic: add_index :table_name, :goat_type


