gitlab-org--gitlab-foss/db/migrate/20130804151314_add_st_diff_...

7 lines
147 B
Ruby
Raw Normal View History

# rubocop:disable all
2013-08-04 12:00:41 -04:00
class AddStDiffToNote < ActiveRecord::Migration
def change
add_column :notes, :st_diff, :text, :null => true
end
end