В чем разница между t.references
и t.belongs_to
?
Почему у нас есть эти два разных слова? Мне кажется, что они делают то же самое?
Пробовал поиск в Google, но не нашел объяснений.
class CreateFoos < ActiveRecord::Migration
def change
create_table :foos do |t|
t.references :bar
t.belongs_to :baz
# The two above seems to give similar results
t.belongs_to :fooable, :polymorphic => true
# I have not tried polymorphic with t.references
t.timestamps
end
end
end