我正在嘗試爲酒店創建一個簡單的客人名單,並且我想聯繫2位已結婚的客人。我到處找,並沒有找到一個簡單的答案。Rails Acesstry Gem配偶
我剛安裝了祖先的寶石,但我只看到如何關聯孩子和父母 - 我錯過了什麼?我是否推翻了這種情況?
任何幫助最好的方式來設置這將不勝感激!
我目前的架構:
ActiveRecord::Schema.define(version: 20160305173232) do
create_table "guests", force: :cascade do |t|
t.string "first_name"
t.string "last_name"
t.string "phone"
t.string "email"
t.date "birthday"
t.text "notes"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "ancestry"
end
add_index "guests", ["ancestry"], name: "index_guests_on_ancestry"
end
我結束了一個partner_id並用它來關聯到一個用戶。比嘗試使用寶石更容易。非常感謝! – gwalshington