summaryrefslogtreecommitdiff
path: root/lib/gitlab/database/partitioning_migration_helpers.rb
blob: 3196dd203567d5d8bc2cc485084d8fd721fd414c (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

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