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

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

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

  def change
    remove_column :namespace_details, :dashboard_notification_at, :datetime_with_timezone
    remove_column :namespace_details, :dashboard_enforcement_at, :datetime_with_timezone
  end
end