debian-mirror-gitlab/db/migrate/20210531070452_default_enforce_ssh_key_expiration.rb
2021-09-04 01:27:46 +05:30

8 lines
223 B
Ruby

# 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