Flowdock
method

references

Importance_2
references(*args, **options) public

Adds a reference.

t.references(:user)
t.belongs_to(:supplier, foreign_key: true)

See {connection.add_reference}[rdoc-ref:SchemaStatements#add_reference] for details of the options you can use.

Show source
Register or log in to add new notes.
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
April 23, 2015
0 thanks

add index directly

You can add an index now directly on the foreign_key :

t.references(:user, index: true)