summaryrefslogtreecommitdiff
path: root/db/migrate/20210424163400_add_project_id_fk_to_timelogs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210424163400_add_project_id_fk_to_timelogs.rb')
-rw-r--r--db/migrate/20210424163400_add_project_id_fk_to_timelogs.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/db/migrate/20210424163400_add_project_id_fk_to_timelogs.rb b/db/migrate/20210424163400_add_project_id_fk_to_timelogs.rb
deleted file mode 100644
index 69542e7627d..00000000000
--- a/db/migrate/20210424163400_add_project_id_fk_to_timelogs.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-
-class AddProjectIdFkToTimelogs < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
- INDEX_NAME = 'index_timelogs_on_project_id_and_spent_at'
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index :timelogs, [:project_id, :spent_at], name: INDEX_NAME
- add_concurrent_foreign_key :timelogs, :projects, column: :project_id, on_delete: :cascade
- end
-
- def down
- with_lock_retries do
- remove_foreign_key_if_exists :timelogs, column: :project_id
- end
- remove_concurrent_index_by_name :timelogs, INDEX_NAME
- end
-end