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

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

class RemoveBuildsEmailServiceFromServices < ActiveRecord::Migration[6.1]
  def up
    execute("DELETE from services WHERE type = 'BuildsEmailService'")
  end

  def down
    # no-op
  end
end