notifications_user.rb 205 Bytes
class NotificationsUser < ActiveRecord::Base
  belongs_to :user
  belongs_to :notification

  attr_accessible :user_id, :notification_id

  validates_uniqueness_of :user_id, :scope => :notification_id
end