Is there a way to show the actual SQL that Laravel-4 will run against a database given a migration?
I would like to see how it will behave before I actually commit it to a database.
Is there a way to show the actual SQL that Laravel-4 will run against a database given a migration?
I would like to see how it will behave before I actually commit it to a database.
This does the trick:
php artisan migrate --pretend