auto-migrate-development
Installation
SKILL.md
Laravel Automatic Migrations Development
When to use this skill
Use this skill when working with Laravel Automatic Migrations to create models with built-in schema definitions, run automatic migrations, or manage database schemas through model-based migrations.
Core Concepts
Laravel Automatic Migrations allows you to define database schema directly in your Eloquent models using a static migration method, eliminating the need for separate migration files for most use cases.
Available Commands
make:amodel
Create a new Eloquent model with automatic migration support.
Usage:
php artisan make:amodel {model_name} {options}