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

20160508215920_add_positions_to_diff_notes.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2952c25004ea6295ebbdc6f786c39e08b098e5ee (plain)
1
2
3
4
5
6
class AddPositionsToDiffNotes < ActiveRecord::Migration
  def change
    add_column :notes, :position, :text
    add_column :notes, :original_position, :text
  end
end