debian-mirror-gitlab/db/migrate/20130804151314_add_st_diff_to_note.rb
2016-06-16 23:09:34 +05:30

7 lines
147 B
Ruby

# rubocop:disable all
class AddStDiffToNote < ActiveRecord::Migration
def change
add_column :notes, :st_diff, :text, :null => true
end
end