Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20180514161336_remove_gemnasium_service.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5842bde474c3bfaf4b019fd872efb5c6e50e0bbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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