database-design
Installation
SKILL.md
Database Design with Laravel
Migration Best Practices
Naming Conventions
Laravel uses snake_case naming for migration files. The artisan generator infers the table name from the migration name:
# Creating tables
php artisan make:migration create_orders_table
php artisan make:migration create_order_items_table