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

class AddIndexToClustersProvidersGcpOnCloudRun < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index(:cluster_providers_gcp, :cloud_run)
  end

  def down
    remove_concurrent_index(:cluster_providers_gcp, :cloud_run)
  end
end