summaryrefslogtreecommitdiff
path: root/app/models/ci/variable_project.rb
blob: 6d68aab8c7d4c033c856c086c5aac2f288686c04 (plain)
1
2
3
4
5
6
7
8
9
module Ci
  class VariableProject < Ci::Variable
    self.table_name = 'ci_variables'

    belongs_to :project

    validates :key, uniqueness: { scope: :project_id }
  end
end