[Fix #197] Add the motivation column to Dossiers

This commit is contained in:
gregoirenovel 2017-05-30 16:37:12 +02:00
parent 33944e343a
commit 12740b4a3e
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddMotivationToDossier < ActiveRecord::Migration[5.0]
def change
add_column :dossiers, :motivation, :text
end
end