summaryrefslogtreecommitdiff
path: root/db/migrate/20210531070452_default_enforce_ssh_key_expiration.rb
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