2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ProjectSetting < ApplicationRecord
|
|
|
|
belongs_to :project, inverse_of: :project_setting
|
|
|
|
|
|
|
|
self.primary_key = :project_id
|
|
|
|
end
|
2020-04-22 19:07:51 +05:30
|
|
|
|
|
|
|
ProjectSetting.prepend_if_ee('EE::ProjectSetting')
|