Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20171116135628_add_environment_scope_to_clusters.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cce757095dd4c423abf81ff96edf7c49c61e2437 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class AddEnvironmentScopeToClusters < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_column_with_default(:clusters, :environment_scope, :string, default: '*')
  end

  def down
    remove_column(:clusters, :environment_scope)
  end
end