Question

Is there an existing solution to deploy liquibase changesets with php?

I mean sadly my production server has only ftp and php capabilities, so I cannot install anything with ssh, but I intend to version my database schema changes along with my code...

Was it helpful?

Solution

Liquibase requires a Java JVM to run, there is not a PHP port. However, liquibase does support updateSQL mode which you can run against your production database (or a backup/copy) to generate a sql script containing the changes to deploy. You can then run that script against the database however you like.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top