gitlab-org--gitlab-foss/db/post_migrate/20210326121537_backfill_cle...

18 lines
322 B
Ruby

# frozen_string_literal: true
class BackfillCleanupForPartitionedWebHookLogs < ActiveRecord::Migration[6.0]
include Gitlab::Database::PartitioningMigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
finalize_backfilling_partitioned_table :web_hook_logs
end
def down
# no op
end
end