Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20210421021510_add_deactivate_dormant_users_to_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74d197cd3b874a383bb58f8f163e4ce3d39f7236 (plain)
1
2
3
4
5
6
7
# 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