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

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

class DefaultEnforceSshKeyExpiration < ActiveRecord::Migration[6.0]
  def change
    change_column_default(:application_settings, :enforce_ssh_key_expiration, from: false, to: true)
  end
end