gitlab-org--gitlab-foss/db/migrate/20171218140451_add_external...

12 lines
297 B
Ruby

class AddExternalAuthorizationServiceClassificationLabelToProjects < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column :projects,
:external_authorization_classification_label,
:string
end
end