summaryrefslogtreecommitdiff
path: root/db/migrate/20210422181809_add_project_to_timelogs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210422181809_add_project_to_timelogs.rb')
-rw-r--r--db/migrate/20210422181809_add_project_to_timelogs.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/migrate/20210422181809_add_project_to_timelogs.rb b/db/migrate/20210422181809_add_project_to_timelogs.rb
deleted file mode 100644
index 1f98e440d15..00000000000
--- a/db/migrate/20210422181809_add_project_to_timelogs.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: true
-
-class AddProjectToTimelogs < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def up
- with_lock_retries do
- add_column :timelogs, :project_id, :integer
- end
- end
-
- def down
- with_lock_retries do
- remove_column :timelogs, :project_id
- end
- end
-end