gitlab-org--gitlab-foss/db/migrate/20210603222333_remove_build...

12 lines
224 B
Ruby

# 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