negos_app/db/migrate/20160317170901_add_note_field_to_need.rb
Nicolas VARROT 1b11e9028b Field added
2016-03-17 19:29:22 +01:00

6 lines
110 B
Ruby

class AddNoteFieldToNeed < ActiveRecord::Migration
def change
add_column :needs, :note, :text
end
end