8 lines
213 B
Ruby
8 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
|