2014-03-05 20:52:20 +08:00
|
|
|
class Badge < ActiveRecord::Base
|
|
|
|
belongs_to :badge_type
|
2014-03-21 20:26:06 +08:00
|
|
|
has_many :user_badges, dependent: :destroy
|
2014-03-05 20:52:20 +08:00
|
|
|
|
|
|
|
validates :name, presence: true, uniqueness: true
|
|
|
|
validates :badge_type, presence: true
|
|
|
|
end
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: badges
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# name :string(255) not null
|
|
|
|
# description :text
|
|
|
|
# badge_type_id :integer not null
|
|
|
|
# grant_count :integer default(0), not null
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2014-03-20 12:35:51 +08:00
|
|
|
# index_badges_on_name (name) UNIQUE
|
2014-03-05 20:52:20 +08:00
|
|
|
#
|