Вопрос

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

Это было полезно?

Решение

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.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top