module Raddar class Notification < ActiveRecord::Base belongs_to :user belongs_to :notifiable, polymorphic: true validates :token, presence: true validates :user_id, presence: true validates :notifiable_id, presence: true end end