2019-01-03 12:48:30 +05:30
|
|
|
class AddEnvironmentScopeToClusters < ActiveRecord::Migration
|
2018-03-17 18:26:18 +05:30
|
|
|
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
|