summaryrefslogtreecommitdiff
path: root/db/migrate/20170222143603_rename_gl_project_id_to_project_id.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170222143603_rename_gl_project_id_to_project_id.rb')
-rw-r--r--db/migrate/20170222143603_rename_gl_project_id_to_project_id.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/20170222143603_rename_gl_project_id_to_project_id.rb b/db/migrate/20170222143603_rename_gl_project_id_to_project_id.rb
deleted file mode 100644
index 390b2c33d91..00000000000
--- a/db/migrate/20170222143603_rename_gl_project_id_to_project_id.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-class RenameGlProjectIdToProjectId < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = true
- DOWNTIME_REASON = 'Renaming an actively used column.'
-
- def change
- rename_column :ci_builds, :gl_project_id, :project_id
- rename_column :ci_commits, :gl_project_id, :project_id
- rename_column :ci_runner_projects, :gl_project_id, :project_id
- rename_column :ci_triggers, :gl_project_id, :project_id
- rename_column :ci_variables, :gl_project_id, :project_id
- end
-end