I am new to cakephp3.refer http://book.cakephp.org/3.0/en/migrations.html and try to create database using terminal.for example:
bin/cake bake migration CreateProducts name:string description:text created modified
this command create file and when use below command it creates database table in phpmyadmin:
bin/cake migrations migrate
But I want to update table with add one column in it..so when I try to update database table it create another migration file ..each time when I want to update database table..these seems weired..because I want to update single table.. Is there any way ,so I am updating database table with same function each time through migration??