debian-mirror-gitlab/db/post_migrate/20170214111112_delete_deprecated_gitlab_ci_service.rb
2019-02-15 15:39:39 +05:30

16 lines
282 B
Ruby

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