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

20170214111112_delete_deprecated_gitlab_ci_service.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09a827d22b06cd70b0ed5bf8a673d86741eee993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class DeleteDeprecatedGitlabCiService < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    disable_statement_timeout

    execute("DELETE FROM services WHERE type = 'GitlabCiService';")
  end

  def down
    # noop
  end
end