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

20210128044930_add_git_two_factor_session_expiry_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: 77a1dd2131bee43bf57293ef3a62073515198fa6 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :application_settings, :git_two_factor_session_expiry, :integer, default: 15, null: false
  end
end