Hi, I got the issue with migration and teamwork.
There are two developer ( dev1 and dev2) :
Dev1 create 2 table (posts, categories) and push to git. ( migration : 1.0.0)
Dev2 pull and run migration. ( 1.0.0)
Dev1 create table users and generate migration ( 1.0.1) and push
Dev2 create table products and generate 1.0.1
Dev2 create table countries and generate ( 1.0.2)
Dev2 pull and push
Now both Dev1 and Dev2 run migration, but Dev2 never has users table, because it is at v1.0.1.
I tried but it didnt work. What should I do or phalcon is not for teamwork like this case ?