Commit 11c8ac78 authored by Andreas Brandl's avatar Andreas Brandl

Drop partitions_dynamic schema if it exists

The original MR got reverted and deployed to GitLab.com. We ship another
migration here to clean this up.
parent f736c78a
---
title: Drop partitions_dynamic schema if it exists
merge_request: 35426
author:
type: other
# frozen_string_literal: true
class DropPartitionsDynamicSchemaIfExists < ActiveRecord::Migration[6.0]
DOWNTIME = false
def up
# This targets GitLab.com only - we deployed a migration to create this schema, but reverted the change
execute 'DROP SCHEMA IF EXISTS partitions_dynamic'
end
def down
# no-op
end
end
......@@ -23453,5 +23453,6 @@ COPY "schema_migrations" (version) FROM STDIN;
20200623185440
20200624075411
20200625045442
20200626130220
\.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment