scaffold-migration
Installation
SKILL.md
Laravel Migration Scaffold Skill
Use this skill when creating database table definitions.
Rules
1. Anonymous Classes
- Always use
return new class extends Migration.
2. Foreign Keys
- Standard: Use
foreignIdFor()constrained to the model class.$table->foreignIdFor(\App\Models\User::class)->constrained()->cascadeOnDelete(); - Nullable: usage of
->nullable()comes beforeconstrained().