0
我對軌道很陌生,正在構建一個簡單的應用程序。導軌模型/數據庫
- 用戶可以通過另一個用戶
目前,我有我的模型建立這樣創建一個遊戲
數字1.在我的文章工作正常。
但我該如何去實現數字2?
數據庫目前看起來是這樣的:
create_table "games", :force => true do |t|
t.integer "user_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
create_table "users", :force => true do |t|
t.string "name"
t.string "email"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
我還沒有嘗試過任何東西,因爲我不確定從哪裏開始。 – steve 2012-03-17 17:35:04
你沒有閱讀[this](http://stackoverflow.com/questions/how-to-ask)? – 2012-03-17 17:37:05
[This this](http://msmvps.com/blogs/jon_skeet/archive/2010/08/29/writing-the-perfect-question.aspx)。 – 2012-03-17 17:40:47