summaryrefslogtreecommitdiff
path: root/db/migrate/20180815040323_add_authorization_type_to_cluster_platforms_kubernetes.rb
blob: 6397d6dd99f4125120e268b6d0e90a7c3d06296e (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddAuthorizationTypeToClusterPlatformsKubernetes < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :cluster_platforms_kubernetes, :authorization_type, :integer, limit: 2
  end
end