debian-mirror-gitlab/db/post_migrate/20210205214003_remove_alerts_service_records_again.rb
2021-03-11 19:13:27 +05:30

20 lines
319 B
Ruby

# frozen_string_literal: true
class RemoveAlertsServiceRecordsAgain < ActiveRecord::Migration[6.0]
DOWNTIME = false
disable_ddl_transaction!
class Service < ActiveRecord::Base
self.table_name = 'services'
end
def up
Service.delete_by(type: 'AlertsService')
end
def down
# no-op
end
end