20171116135628_add_environment_scope_to_clusters.rb 329 Bytes
Newer Older
1
class AddEnvironmentScopeToClusters < ActiveRecord::Migration[4.2]
2 3 4 5 6 7 8 9 10 11 12 13 14 15
  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