summaryrefslogtreecommitdiff
path: root/app/models/ci/ci_database_record.rb
blob: e2b832a28e7742a85e25560ffd4f140172ef8b57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Ci
  # TODO: https://gitlab.com/groups/gitlab-org/-/epics/6168
  #
  # Do not use this yet outside of `ci_instance_variables`.
  # This class is part of a migration to move all CI classes to a new separate database.
  # Initially we are only going to be moving the `Ci::InstanceVariable` model and it will be duplicated in the main and CI tables
  # Do not extend this class in any other models.
  class CiDatabaseRecord < Ci::ApplicationRecord
    self.abstract_class = true

    if Gitlab::Database.has_config?(:ci)
      connects_to database: { writing: :ci, reading: :ci }
    end
  end
end