debian-mirror-gitlab/db/migrate/20211118114228_add_max_ssh_key_lifetime_to_application_settings.rb

8 lines
207 B
Ruby
Raw Normal View History

2022-01-26 12:08:38 +05:30
# frozen_string_literal: true
class AddMaxSshKeyLifetimeToApplicationSettings < Gitlab::Database::Migration[1.0]
def change
add_column :application_settings, :max_ssh_key_lifetime, :integer
end
end