summaryrefslogtreecommitdiff
path: root/db/migrate/20130804151314_add_st_diff_to_note.rb
blob: 9e2da73b695c56ec442660f254c126f8c57e7360 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddStDiffToNote < ActiveRecord::Migration
  def change
    add_column :notes, :st_diff, :text, :null => true
  end
end