Domanda

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...

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top