如何创建连接到模型用户的新模型文档,以使用户拥有许多文档?这应该使用控制台来完成。
答案 0 :(得分:0)
好吧,这是基本的询问方式,
在Rails控制台中输入以下内容,
class user
has_many :documents
end
由documents
表提供的将具有user_id
外键。然后您可以按用户对象连接文档。
答案 1 :(得分:0)
# bash
rails generate model document user:belongs_to
# then just modify app/models/user.rb, and add `has_many :documents`