summaryrefslogtreecommitdiff
path: root/app/models/project_custom_attribute.rb
blob: 3f1a7b86a8244af43a613f368d7a408bb4a33bd4 (plain)
1
2
3
4
5
6
class ProjectCustomAttribute < ActiveRecord::Base
  belongs_to :project

  validates :project, :key, :value, presence: true
  validates :key, uniqueness: { scope: [:project_id] }
end