Author Archives: David Peach
Reached Level 30
Aside
Reach player level 30
Horizon Forbidden West
Reached Level 20
Aside
Reached player level 20
Horizon Forbidden West
Arthur Morgan in profile
Image
Reply
Arthur Morgan sunset silhouette
Image
Status
Finally playing the original Red Dead Redemption (haven’t played sequel yet either)
Really loving the O.G. game.
Remember what you’ve learnt
Image
Lady in red
Gallery
This gallery contains 4 photos.
Walking through the blizzard
Image
Veteran Porter
Image
Halloween cat
Image
Preview Laravel’s migrations with the pretend flag
Here is the command to preview your Laravel migrations without running them:
cd /your/project/root
php artisan migrate --pretend
Laravel’s migrations give us the power to easily version control our database schema creations and updates.
In a recent task at work, I needed to find out why a particular migration was failing.
This is when I discovered the simple but super-useful flag --pretend
, which will show you the queries that Laravel will run against your database without actually running those migrations.