bb8f2520b4
We request Gitaly in a N+1 manner to build discussion diffs. Once the diffs are from different revisions, it's hard to make a single request to the service in order to build the whole response. With this change we solve this problem and simplify a lot fetching this piece of info.
21 lines
652 B
Ruby
21 lines
652 B
Ruby
class CreateNotesDiffFiles < ActiveRecord::Migration
|
|
DOWNTIME = false
|
|
|
|
disable_ddl_transaction!
|
|
|
|
def change
|
|
create_table :note_diff_files do |t|
|
|
t.references :diff_note, references: :notes, null: false, index: { unique: true }
|
|
t.text :diff, null: false
|
|
t.boolean :new_file, null: false
|
|
t.boolean :renamed_file, null: false
|
|
t.boolean :deleted_file, null: false
|
|
t.string :a_mode, null: false
|
|
t.string :b_mode, null: false
|
|
t.text :new_path, null: false
|
|
t.text :old_path, null: false
|
|
end
|
|
|
|
add_foreign_key :note_diff_files, :notes, column: :diff_note_id, on_delete: :cascade
|
|
end
|
|
end
|