debian-mirror-gitlab/db/migrate/20160508215920_add_positions_to_diff_notes.rb
2019-02-15 15:39:39 +05:30

6 lines
173 B
Ruby

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