summaryrefslogtreecommitdiff
path: root/db/migrate/20221205061134_add_disable_pats_to_application_settings.rb
blob: 0f2438f3e783b05618e6a3dff0732ef6beb6ba42 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddDisablePatsToApplicationSettings < Gitlab::Database::Migration[2.0]
  def change
    add_column(:application_settings, :disable_personal_access_tokens, :boolean, default: false, null: false)
  end
end