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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2019-04-11 15:32:56 +0300
committerNick Thomas <nick@gitlab.com>2019-04-11 15:32:56 +0300
commit0276b8682e37d361adbd1ac89d9ba6992f0d1b60 (patch)
tree921c7b84db8492726b2b06baed09b5385f1f4440 /db
parentec7804444343cef3562d88aab2d255287a215430 (diff)
parenta409a77d5c5d75b02421e7d4a8a293c3469e7556 (diff)
Merge branch 'restore-hipchat' into 'master'
Revert "Remove HipChat integration from GitLab" Closes #60042 See merge request gitlab-org/gitlab-ce!27172
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20190107151029_remove_hipchat_services.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/db/migrate/20190107151029_remove_hipchat_services.rb b/db/migrate/20190107151029_remove_hipchat_services.rb
deleted file mode 100644
index 4741ec88907..00000000000
--- a/db/migrate/20190107151029_remove_hipchat_services.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class RemoveHipchatServices < ActiveRecord::Migration[5.0]
- DOWNTIME = false
-
- def up
- execute "DELETE FROM services WHERE type = 'HipchatService'"
- end
-
- def down
- # no-op
- end
-end