Vì vậy, tôi có một create_table như thế này cho các Khóa học tại một trường học:
create_table :courses do |t|
t.string :name
t.references :course
t.timestamps
end
nhưng tôi muốn nó tham chiếu đến hai khóa học khác như:
has_many :transferrable_as # A Course
has_many :same_as # Another Course
Tôi có thể nói như sau không?
t.references :transferrable_as, :as=> :course