diff --git a/db/migrate/20170126074122_add_adult_or_child_in_batches.rb b/db/migrate/20170126074122_add_adult_or_child_in_batches.rb new file mode 100644 index 0000000..d129b7f --- /dev/null +++ b/db/migrate/20170126074122_add_adult_or_child_in_batches.rb @@ -0,0 +1,5 @@ +class AddAdultOrChildInBatches < ActiveRecord::Migration[5.0] + def change + add_column :batches, :adult_or_child, :string ,:default => "CHILD" + end +end