debian-mirror-gitlab/db/migrate/20210424115725_swap_partitioned_web_hook_logs.rb
2021-06-08 01:23:25 +05:30

16 lines
319 B
Ruby

# frozen_string_literal: true
class SwapPartitionedWebHookLogs < ActiveRecord::Migration[6.0]
include Gitlab::Database::PartitioningMigrationHelpers
DOWNTIME = false
def up
replace_with_partitioned_table :web_hook_logs
end
def down
rollback_replace_with_partitioned_table :web_hook_logs
end
end