In Phalcon framework, can I make Migrations form a model? So that my migrations will also generate table for my model.
It works the otherway arround. You can use migrations to generate a migration file from your table. Once you have that migration file you can use it to deploy on other systems
Ruud Boon, thanks for your answer.