gitlab-org--gitlab-foss/app/models/subscription.rb

22 lines
541 B
Ruby
Raw Normal View History

2015-03-16 15:20:17 +00:00
# == Schema Information
#
# Table name: subscriptions
#
# id :integer not null, primary key
# user_id :integer
# subscribable_id :integer
# subscribable_type :string(255)
# subscribed :boolean
# created_at :datetime
# updated_at :datetime
#
class Subscription < ActiveRecord::Base
2015-03-16 13:35:48 +00:00
belongs_to :user
belongs_to :subscribable, polymorphic: true
validates :user_id,
2015-03-16 13:35:48 +00:00
uniqueness: { scope: [:subscribable_id, :subscribable_type] },
presence: true
end