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, 14 insertions, 0 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
new file mode 100644
index 00000000000..7c19d471557
--- /dev/null
+++ b/db/migrate/20170222143603_rename_gl_project_id_to_project_id.rb
@@ -0,0 +1,14 @@
+class RenameGlProjectIdToProjectId < ActiveRecord::Migration
+ 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