When typing migrate --pretend
command, you get the SQL query that will be executed in the terminal. It's an interesting way to debug SQL if necessary.
1// Artisan command2php artisan migrate --pretend
Tip given by @zarpelon
When typing migrate --pretend
command, you get the SQL query that will be executed in the terminal. It's an interesting way to debug SQL if necessary.
1// Artisan command2php artisan migrate --pretend
Tip given by @zarpelon