php-database-migrations
Installation
SKILL.md
PHP Database Migrations
Creation Rule
Do not add database migrations unless they are explicitly needed by the requested change or explicitly requested by the user.
If a schema change is implied but not clearly required, ask before adding a migration.
Migration System
Use the migration system provided by the application framework or already established by the project.
- Prefer Laravel migrations for Laravel applications.
- Prefer Doctrine Migrations for Doctrine or Symfony applications.
- Prefer Phinx for other PHP applications that do not already have a migration system.
- Do not introduce an additional migration framework when the project already has one.