laravel-migrations-and-factories
Originally fromnoartem/laravel-vue-skills
Installation
SKILL.md
Migrations and Factories
Keep schema changes safe, testable, and reversible.
Commands
php artisan make:model Post -mfc
# Run/rollback
php artisan migrate
php artisan migrate:rollback --step=1
# Fresh DB (dangerous; dev only)
php artisan migrate:fresh --seed