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 before constrained().

3. ID and UUIDs

Installs
3
GitHub Stars
31
First Seen
Jan 24, 2026
scaffold-migration — iurygdeoliveira/labsis-kit