summaryrefslogtreecommitdiff
path: root/db/post_migrate/20190809072552_set_self_monitoring_project_alerting_token.rb
blob: d10887fb5d5500787aaba994a75461718bc70449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class SetSelfMonitoringProjectAlertingToken < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def up
    # no-op
    # Converted to no-op in https://gitlab.com/gitlab-org/gitlab/merge_requests/17049.

    # This migration has been made a no-op because the pre-requisite migration
    # which creates the self-monitoring project has already been removed in
    # https://gitlab.com/gitlab-org/gitlab/merge_requests/16864. As
    # such, this migration would do nothing.
  end

  def down
    # no-op
  end
end