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

20211118114228_add_max_ssh_key_lifetime_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: 1b0d2104c919222e0ff50e7d32aab624dc683ba8 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddMaxSshKeyLifetimeToApplicationSettings < Gitlab::Database::Migration[1.0]
  def change
    add_column :application_settings, :max_ssh_key_lifetime, :integer
  end
end