debian-mirror-gitlab/app/models/project_custom_attribute.rb

9 lines
213 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2019-07-07 11:18:12 +05:30
class ProjectCustomAttribute < ApplicationRecord
2018-03-17 18:26:18 +05:30
belongs_to :project
validates :project, :key, :value, presence: true
validates :key, uniqueness: { scope: [:project_id] }
end