6473f69761
Adds boolean field 'managed' to clusters table. This new column will be used to distinguish those clusters that are automatically managed by gitlab. Needed for https://gitlab.com/gitlab-org/gitlab-ce/issues/56557
17 lines
332 B
Ruby
17 lines
332 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddManagedToCluster < ActiveRecord::Migration[5.0]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
disable_ddl_transaction!
|
|
|
|
DOWNTIME = false
|
|
|
|
def up
|
|
add_column_with_default(:clusters, :managed, :boolean, default: true)
|
|
end
|
|
|
|
def down
|
|
remove_column(:clusters, :managed)
|
|
end
|
|
end
|