summaryrefslogtreecommitdiff
path: root/db/migrate/20151209144329_migrate_ci_web_hooks.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20151209144329_migrate_ci_web_hooks.rb')
-rw-r--r--db/migrate/20151209144329_migrate_ci_web_hooks.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/db/migrate/20151209144329_migrate_ci_web_hooks.rb b/db/migrate/20151209144329_migrate_ci_web_hooks.rb
deleted file mode 100644
index 7562735cb1e..00000000000
--- a/db/migrate/20151209144329_migrate_ci_web_hooks.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-class MigrateCiWebHooks < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- def up
- execute(
- 'INSERT INTO web_hooks (url, project_id, type, created_at, updated_at, push_events, issues_events, merge_requests_events, tag_push_events, note_events, build_events) ' \
- "SELECT ci_web_hooks.url, projects.id, 'ProjectHook', ci_web_hooks.created_at, ci_web_hooks.updated_at, " \
- "#{false_value}, #{false_value}, #{false_value}, #{false_value}, #{false_value}, #{true_value} FROM ci_web_hooks " \
- 'JOIN ci_projects ON ci_web_hooks.project_id = ci_projects.id ' \
- 'JOIN projects ON ci_projects.gitlab_id = projects.id'
- )
- end
-
- def down
- end
-end