[Fix #1296] Birthday field is optional in procedure

This commit is contained in:
Mathieu Magnin 2018-02-06 16:58:04 +01:00
parent 89417da331
commit 50f35ee905
8 changed files with 59 additions and 27 deletions

View file

@ -0,0 +1,5 @@
class AddAskBirthdayToProcedure < ActiveRecord::Migration[5.0]
def change
add_column :procedures, :ask_birthday, :boolean, default: false, null: false
end
end