Individual: add a second birthdate which is a date

This commit is contained in:
simon lehericey 2018-04-03 11:43:25 +02:00
parent 0bf389b849
commit 0093db18a1
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddSecondBirthdateColumnToIndividual < ActiveRecord::Migration[5.2]
def change
add_column :individuals, :second_birthdate, :date
end
end