debian-mirror-gitlab/db/post_migrate/20221110045406_sanitize_confidential_note_todos.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
411 B
Ruby
Raw Normal View History

2023-01-13 00:05:48 +05:30
# frozen_string_literal: true
class SanitizeConfidentialNoteTodos < Gitlab::Database::Migration[2.0]
restrict_gitlab_migration gitlab_schema: :gitlab_main
def up
2023-04-23 21:23:45 +05:30
# no-op: this empty migration is left here only for compatibility reasons.
# It was a temporary migration which used not-isolated code.
# https://gitlab.com/gitlab-org/gitlab/-/issues/382557
2023-01-13 00:05:48 +05:30
end
def down
2023-04-23 21:23:45 +05:30
# no-op
2023-01-13 00:05:48 +05:30
end
end