Commit 7fd0fa86 authored by Kamil Trzciński's avatar Kamil Trzciński

Merge branch 'truncate-ci-mirror-tables' into 'master'

Truncate ci_namespace_mirrors and ci_project_mirrors

See merge request gitlab-org/gitlab!77953
parents ec37dcd2 63143a78
# frozen_string_literal: true
class TruncateCiMirrorTables < Gitlab::Database::Migration[1.0]
disable_ddl_transaction!
def up
execute('TRUNCATE TABLE ci_namespace_mirrors')
execute('TRUNCATE TABLE ci_project_mirrors')
end
def down
# noop
end
end
69c20daf6a23346288e516df3e70120819d76dcb5fe2b1b51af416349311820b
\ No newline at end of file
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