summaryrefslogtreecommitdiff
path: root/db/migrate/20210306121300_partition_web_hook_logs.rb
blob: ff35a19648edd02c5effce72fc81423385adab3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class PartitionWebHookLogs < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers
  include Gitlab::Database::PartitioningMigrationHelpers

  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  disable_ddl_transaction!

  def up
    partition_table_by_date :web_hook_logs, :created_at
  end

  def down
    drop_partitioned_table_for :web_hook_logs
  end
end