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

class AddAuthorizationTypeToClusterPlatformsKubernetes < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

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