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

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_column_with_default(:cluster_providers_gcp, :cloud_run, :boolean, default: false)
  end

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