summaryrefslogtreecommitdiff
path: root/db/migrate/20201023114628_create_merge_request_cleanup_schedules.rb
blob: f63738682b11a6c95bb78bd55950bf5e7e9eb599 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

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

  DOWNTIME = false

  def up
    with_lock_retries do
      create_table :merge_request_cleanup_schedules, id: false do |t|
        t.references :merge_request, primary_key: true, index: { unique: true }, null: false, foreign_key: { on_delete: :cascade }
        t.datetime_with_timezone :scheduled_at, null: false
        t.datetime_with_timezone :completed_at, null: true

        t.timestamps_with_timezone

        t.index :scheduled_at, where: 'completed_at IS NULL', name: 'index_mr_cleanup_schedules_timestamps'
      end
    end
  end

  def down
    with_lock_retries do
      drop_table :merge_request_cleanup_schedules
    end
  end
end