summaryrefslogtreecommitdiff
path: root/db/migrate/20210603222333_remove_builds_email_service_from_services.rb
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