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

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

class AddDashboardFieldsToNamespaceDetails < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

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