We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Phalcon Migrations

In Phalcon framework, can I make Migrations form a model? So that my migrations will also generate table for my model.



10.1k

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.