Hi I'd like to introduce an intelligent alternative version of Laravel 5/6 Database Migrations
* Using raw SQL queries
- you can use all the capabilities of your database to describe the structure and changes
- easy work with procedures and functions
- safe data migrations (INSERT/UPDATE)
- IDE native syntax support
* Running migrations within a transaction with automatic rollback in case of an error (if your database supports it, PostgreSQL for example)
* Dynamic output running the SQL-queries
* Automatic rollback after switching the branch (for reviewing, testing, demo, building at permanent/staging database)
* Auto-update the migration after editing (version change in the name of the migration file)
* Apply with rollback testing - UD-DOWN-UP
* Rollback or Reload any selected migration
see: https://github.com/maxim-oleinik/blade-migrations-laravel
Hope, you find it usefull. Thanks ))
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community