Hi I just started working on a project which is build with PHP Symfony using Propel-Mysql. I'm migrating the database from MySql
to Postgres
, and would like to know how I can do that.
The current schema is stored in a schema.yml file
Since I'm new to Symfony, I'd like to know a few things:
- Is there support for Postgres with Symfony/Propel
- As far as I know, the schema will have to be changed a little bit, the constructs of
MySql
andPostgres
are not similar, how can I go about doing so? - will my ORM auto-generate usage class files once the migration is complete?