summaryrefslogtreecommitdiff
path: root/db/post_migrate/20180514161336_remove_gemnasium_service.rb
blob: 6d7806e8daa4db9f4ac6ba5457a00b32bfffbdd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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