when I run below command after creating new migration on postgres driver, I am getting errors migration table already exists.
./yii migrate
But the first migration that created "migration" table already completed succesfully.
Error Info:
Array
(
[0] => 42P07
[1] => 7
[2] => ERROR: relation "migration" already exists
)
It seems Yii2 is trying to run all migration from start everytime since in new migration I am creating some other table. it still complains about migration table missing.