Rails 控制台需要帮助 HABTM 关系
我正在尝试找出使用控制台更新我的 Roles_users 模型的命令。我正在将 cancan 与 devise 结合使用,并尝试设置我的 seeds.rb。我想先测试一下。
我的用户有很多角色,反之亦然。一切工作正常,我的 Roles_users 表已填充。
我想弄清楚的是如何在控制台中更新用户。
我可以从我的开发日志中看到发生以下情况:
INSERT INTO "roles_users" ("role_id", "user_id") VALUES (3, 1)
我怎样才能在控制台中做到这一点?
谢谢
I'm trying to figure out the command to update my roles_users model using the console. Am using cancan with devise and I'm trying to set up my seeds.rb. I wanted to test first.
My users have many roles and vice versa. Everything is working fine and my roles_users table has been populated.
What I'm trying to figure out is how to update a user in the console.
I can see from my development log the following happens:
INSERT INTO "roles_users" ("role_id", "user_id") VALUES (3, 1)
How can I do exactly this in the console??
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
User.find(user_id).roles << Role.find(role_id)
User.find(user_id).roles << Role.find(role_id)