Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20180815040323_add_authorization_type_to_cluster_platforms_kubernetes.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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