验证连接表中记录的唯一性

发布于 2024-11-07 02:21:43 字数 431 浏览 0 评论 0原文

我有一个采用此设置的连接表:

create_table "showable_videos", :force => true do |t|
  t.integer  "user_id"
  t.integer  "profile_id"
  t.integer  "video_id"
  t.datetime "created_at"
  t.datetime "updated_at"
end

How do I validate the uniqueness of a showable_video?换句话说,我需要确保没有两个 showable_videos 具有完全相同的 user_idprofile_idvideo_id

I have a join table with this setup:

create_table "showable_videos", :force => true do |t|
  t.integer  "user_id"
  t.integer  "profile_id"
  t.integer  "video_id"
  t.datetime "created_at"
  t.datetime "updated_at"
end

How do I validate the uniqueness of a showable_video? In other words, I need to make sure no two showable_videos have all the same user_id, profile_id, and video_id.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

慕巷 2024-11-14 02:21:43

尝试有一个模型 ShowableVideo 并放在那里:

validates_uniqueness_of :user_id, :scope => [:profile_id, :video_id]

Try having a model ShowableVideo and put there:

validates_uniqueness_of :user_id, :scope => [:profile_id, :video_id]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文