문제

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