discourse/app/models/user_badge.rb

41 lines
1.2 KiB
Ruby
Raw Normal View History

2014-03-05 07:52:20 -05:00
class UserBadge < ActiveRecord::Base
belongs_to :badge
belongs_to :user
belongs_to :granted_by, class_name: 'User'
belongs_to :notification, dependent: :destroy
belongs_to :post
2014-03-05 07:52:20 -05:00
2014-05-21 03:22:42 -04:00
validates :badge_id, presence: true, uniqueness: {scope: :user_id}, if: 'badge.single_grant?'
2014-03-05 07:52:20 -05:00
validates :user_id, presence: true
validates :granted_at, presence: true
validates :granted_by, presence: true
after_create do
Badge.increment_counter 'grant_count', self.badge_id
end
after_destroy do
Badge.decrement_counter 'grant_count', self.badge_id
end
2014-03-05 07:52:20 -05:00
end
# == Schema Information
#
# Table name: user_badges
#
# id :integer not null, primary key
# badge_id :integer not null
# user_id :integer not null
# granted_at :datetime not null
# granted_by_id :integer not null
# post_id :integer
# notification_id :integer
# seq :integer default(0), not null
2014-03-05 07:52:20 -05:00
#
# Indexes
#
2014-07-14 21:29:44 -04:00
# index_user_badges_on_badge_id_and_user_id (badge_id,user_id)
# index_user_badges_on_badge_id_and_user_id_and_post_id (badge_id,user_id,post_id) UNIQUE
# index_user_badges_on_badge_id_and_user_id_and_seq (badge_id,user_id,seq) UNIQUE
2014-03-05 07:52:20 -05:00
#