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

20200603180338_add_enforce_pat_expiration_to_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca0abc70b64c9d8adc949c2f9ab40404245165fc (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddEnforcePatExpirationToApplicationSettings < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :application_settings, :enforce_pat_expiration, :boolean, default: true, null: false
  end
end