summaryrefslogtreecommitdiff
path: root/db/migrate/20170222143500_remove_old_project_id_columns.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170222143500_remove_old_project_id_columns.rb')
-rw-r--r--db/migrate/20170222143500_remove_old_project_id_columns.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/db/migrate/20170222143500_remove_old_project_id_columns.rb b/db/migrate/20170222143500_remove_old_project_id_columns.rb
deleted file mode 100644
index 356dee4a060..00000000000
--- a/db/migrate/20170222143500_remove_old_project_id_columns.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-# rubocop:disable Migration/RemoveColumn
-# rubocop:disable RemoveIndex
-class RemoveOldProjectIdColumns < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
- disable_ddl_transaction!
-
- DOWNTIME = true
- DOWNTIME_REASON = 'Unused columns are being removed.'
-
- def up
- remove_index :ci_builds, :project_id if
- index_exists?(:ci_builds, :project_id)
-
- remove_column :ci_builds, :project_id
- remove_column :ci_commits, :project_id
- remove_column :ci_runner_projects, :project_id
- remove_column :ci_triggers, :project_id
- remove_column :ci_variables, :project_id
- end
-
- def down
- add_column :ci_builds, :project_id, :integer
- add_column :ci_commits, :project_id, :integer
- add_column :ci_runner_projects, :project_id, :integer
- add_column :ci_triggers, :project_id, :integer
- add_column :ci_variables, :project_id, :integer
-
- add_concurrent_index :ci_builds, :project_id
- end
-end