debian-mirror-gitlab/db/migrate/20190801060809_delete_kubernetes_services.rb
2021-06-08 01:23:25 +05:30

19 lines
341 B
Ruby

# frozen_string_literal: true
class DeleteKubernetesServices < ActiveRecord::Migration[5.2]
DOWNTIME = false
class Service < ActiveRecord::Base
self.table_name = 'services'
self.inheritance_column = :_type_disabled
end
def up
Service.where(type: "KubernetesService").delete_all
end
def down
# no-op
end
end