gitlab-org--gitlab-foss/app/models/project_custom_attribute.rb

9 lines
213 B
Ruby

# frozen_string_literal: true
class ProjectCustomAttribute < ApplicationRecord
belongs_to :project
validates :project, :key, :value, presence: true
validates :key, uniqueness: { scope: [:project_id] }
end