summaryrefslogtreecommitdiff
path: root/app/models/project_setting.rb
blob: 9022d3e879d0c4c96c5688bfc7982fd2fcb10246 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class ProjectSetting < ApplicationRecord
  belongs_to :project, inverse_of: :project_setting

  self.primary_key = :project_id
end

ProjectSetting.prepend_if_ee('EE::ProjectSetting')