debian-mirror-gitlab/db/post_migrate/20180514161336_remove_gemnasium_service.rb
2018-11-08 19:23:39 +05:30

16 lines
267 B
Ruby

class RemoveGemnasiumService < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
disable_statement_timeout
execute("DELETE FROM services WHERE type='GemnasiumService';")
end
def down
# noop
end
end