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

20230811185901_remove_application_settings_dashboard_notification_limit_column.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cfd112316eeb4070dd33d9385473a2a19a32fd72 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class RemoveApplicationSettingsDashboardNotificationLimitColumn < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    remove_column :application_settings, :dashboard_notification_limit, :integer, default: 0, null: false
  end
end