add new migration file

This commit is contained in:
Sunandar
2017-01-26 16:29:13 +06:30
parent 735d899eef
commit 29a441722c

View File

@@ -0,0 +1,5 @@
class AddAdultOrChildInBatches < ActiveRecord::Migration[5.0]
def change
add_column :batches, :adult_or_child, :string ,:default => "CHILD"
end
end