summaryrefslogtreecommitdiff
path: root/db/migrate/20140903115954_migrate_to_new_shell.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20140903115954_migrate_to_new_shell.rb')
-rw-r--r--db/migrate/20140903115954_migrate_to_new_shell.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20140903115954_migrate_to_new_shell.rb b/db/migrate/20140903115954_migrate_to_new_shell.rb
deleted file mode 100644
index cc0cce483b1..00000000000
--- a/db/migrate/20140903115954_migrate_to_new_shell.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# rubocop:disable all
-class MigrateToNewShell < ActiveRecord::Migration[4.2]
- def change
- return if Rails.env.test?
-
- gitlab_shell_path = Gitlab.config.gitlab_shell.path
- if system("#{gitlab_shell_path}/bin/create-hooks")
- puts 'Repositories updated with new hooks'
- else
- raise 'Failed to rewrite gitlab-shell hooks in repositories'
- end
- end
-end