debian-mirror-gitlab/db/migrate/20160508215920_add_positions_to_diff_notes.rb
2016-08-24 12:49:21 +05:30

7 lines
168 B
Ruby

class AddPositionsToDiffNotes < ActiveRecord::Migration
def change
add_column :notes, :position, :text
add_column :notes, :original_position, :text
end
end