debian-mirror-gitlab/db/migrate/20210118111307_add_enforce_ssh_key_expiration_to_application_settings.rb
2021-03-11 19:13:27 +05:30

10 lines
264 B
Ruby

# frozen_string_literal: true
class AddEnforceSshKeyExpirationToApplicationSettings < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :application_settings, :enforce_ssh_key_expiration, :boolean, default: false, null: false
end
end