summaryrefslogtreecommitdiff
path: root/db/migrate/20171218140451_add_external_authorization_service_classification_label_to_projects.rb
blob: 7b83580f02557cc5b5c9491fb4e0724bf4dc55cb (plain)
1
2
3
4
5
6
7
8
9
10
11
class AddExternalAuthorizationServiceClassificationLabelToProjects < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :projects,
               :external_authorization_classification_label,
               :string
  end
end