Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200326122700_create_diff_note_positions.rb')
-rw-r--r--db/migrate/20200326122700_create_diff_note_positions.rb35
1 files changed, 0 insertions, 35 deletions
diff --git a/db/migrate/20200326122700_create_diff_note_positions.rb b/db/migrate/20200326122700_create_diff_note_positions.rb
deleted file mode 100644
index d37f7fef078..00000000000
--- a/db/migrate/20200326122700_create_diff_note_positions.rb
+++ /dev/null
@@ -1,35 +0,0 @@
-# frozen_string_literal: true
-
-class CreateDiffNotePositions < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- # rubocop:disable Migration/AddLimitToTextColumns
- # rubocop:disable Migration/PreventStrings
- def up
- with_lock_retries do
- create_table :diff_note_positions do |t|
- t.references :note, foreign_key: { on_delete: :cascade }, null: false, index: false
- t.integer :old_line
- t.integer :new_line
- t.integer :diff_content_type, limit: 2, null: false
- t.integer :diff_type, limit: 2, null: false
- t.string :line_code, limit: 255, null: false
- t.binary :base_sha, null: false
- t.binary :start_sha, null: false
- t.binary :head_sha, null: false
- t.text :old_path, null: false
- t.text :new_path, null: false
-
- t.index [:note_id, :diff_type], unique: true
- end
- end
- end
- # rubocop:enable Migration/PreventStrings
- # rubocop:enable Migration/AddLimitToTextColumns
-
- def down
- drop_table :diff_note_positions
- end
-end