debian-mirror-gitlab/db/migrate/20180907015926_add_legacy_abac_to_cluster_providers_gcp.rb

18 lines
381 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2019-02-15 15:39:39 +05:30
class AddLegacyAbacToClusterProvidersGcp < ActiveRecord::Migration[4.2]
2018-12-05 23:21:45 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_column_with_default(:cluster_providers_gcp, :legacy_abac, :boolean, default: true)
end
def down
remove_column(:cluster_providers_gcp, :legacy_abac)
end
end