debian-mirror-gitlab/db/migrate/20130804151314_add_st_diff_to_note.rb

7 lines
147 B
Ruby
Raw Normal View History

# rubocop:disable all
2014-09-02 18:07:02 +05:30
class AddStDiffToNote < ActiveRecord::Migration
def change
add_column :notes, :st_diff, :text, :null => true
end
end