users_star_project.rb 537 Bytes
Newer Older
Ciro Santilli's avatar
Ciro Santilli committed
1 2 3 4 5 6 7 8 9 10 11 12
# == Schema Information
#
# Table name: users_star_projects
#
#  id                 :integer          not null, primary key
#  starrer_id         :integer          not null
#  project_id         :integer          not null
#  created_at         :datetime
#  updated_at         :datetime
#

class UsersStarProject < ActiveRecord::Base
13
  belongs_to :project, counter_cache: :star_count
Ciro Santilli's avatar
Ciro Santilli committed
14 15 16 17 18 19
  belongs_to :user

  validates :user, presence: true
  validates :user_id, uniqueness: { scope: [:project_id] }
  validates :project, presence: true
end