gitlab-org--gitlab-foss/app/models/ci/cluster.rb

11 lines
178 B
Ruby
Raw Normal View History

module Ci
class Cluster < ActiveRecord::Base
extend Gitlab::Ci::Model
belongs_to :project
belongs_to :owner, class_name: 'User'
2017-09-26 04:46:09 -04:00
belongs_to :service
end
end