2018-12-23 12:14:25 +05:30
|
|
|
class AddEnvironmentScopeToClusters < ActiveRecord::Migration[4.2]
|
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
|