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

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

class RemoveApplicationSettingsDashboardColumns < Gitlab::Database::Migration[2.1]
  def change
    remove_column :application_settings, :dashboard_enforcement_limit, :integer, default: 0, null: false
    remove_column :application_settings, :dashboard_limit_new_namespace_creation_enforcement_date, :date
  end
end