We have an existing complex database schema complete with indexes, constraints, triggers, tables etc.
With liquibase, you can point to pure sql files in your changesets, which could be a dump of the whole DB for the first (initial schema creation) migration.
Is there any way to do this with the laravel artisan migration system?
We would like to do all our db updates using the SQL language (because we know it already, and because we will only ever user mysql), but need the framework (migrate or liquibase) to apply the changes in the right order etc. (so they keep a log on the DB of the changes already applied etc).
If not, has anyone used liqubase with laravel? The only issue is that it wont be able to read the .env db connection strings, and that each developer will need to install liqubase (not the end of the world, but if the laravel built in system can use sql, it would save us time and effort)