Welcome to mirror list, hosted at ThFree Co, Russian Federation.

partitioning_migration_helpers.rb « database « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 881177a195ebb156fda8eb90f22aaadf29d91445 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Gitlab
  module Database
    module PartitioningMigrationHelpers
      include ForeignKeyHelpers
      include TableManagementHelpers
    end
  end
end