gitlab-org--gitlab-foss/db/post_migrate/20180514161336_remove_gemna...

16 lines
272 B
Ruby

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