debian-mirror-gitlab/db/post_migrate/20190809072552_set_self_monitoring_project_alerting_token.rb

20 lines
543 B
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
class SetSelfMonitoringProjectAlertingToken < ActiveRecord::Migration[5.2]
DOWNTIME = false
def up
2019-12-26 22:10:19 +05:30
# no-op
# Converted to no-op in https://gitlab.com/gitlab-org/gitlab/merge_requests/17049.
2019-12-04 20:38:33 +05:30
2019-12-26 22:10:19 +05:30
# 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.
2019-12-04 20:38:33 +05:30
end
def down
2019-12-26 22:10:19 +05:30
# no-op
2019-12-04 20:38:33 +05:30
end
end