20 lines
491 B
Ruby
20 lines
491 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class CreateDynamicPartitionsSchema < ActiveRecord::Migration[6.0]
|
||
|
include Gitlab::Database::SchemaHelpers
|
||
|
|
||
|
DOWNTIME = false
|
||
|
|
||
|
def up
|
||
|
execute 'CREATE SCHEMA gitlab_partitions_dynamic'
|
||
|
|
||
|
create_comment(:schema, :gitlab_partitions_dynamic, <<~EOS.strip)
|
||
|
Schema to hold partitions managed dynamically from the application, e.g. for time space partitioning.
|
||
|
EOS
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
execute 'DROP SCHEMA gitlab_partitions_dynamic'
|
||
|
end
|
||
|
end
|