gitlab-org--gitlab-foss/db/migrate/20210421021510_add_deactiva...

8 lines
241 B
Ruby

# frozen_string_literal: true
class AddDeactivateDormantUsersToApplicationSettings < ActiveRecord::Migration[6.0]
def change
add_column :application_settings, :deactivate_dormant_users, :boolean, default: false, null: false
end
end