Level 88
You you need to create a migration for each change to your database. New migrations include for example an extra column in your users table. You should never run php artisan migrate:fresh on production, because it will delete everything and create everything again. You can only run php artisan migrate. Your migrations should never delete data, unless it's a table or column you don't use anymore!
1 like