- Rollback Migrations: If you need to make changes to your database structure, you can roll back the last migration using:bashCopy code
php artisan migrate:rollback
- Seeding Data: After creating migrations, you might want to populate your database with initial data. You can create a seeder with:bashCopy code
php artisan make:seeder TaskSeeder
Then define the data in therun()
method of the seeder.
Leave a Reply