What problem does it solve?
This Skill addresses the challenges of performing complex schema changes in SQLite databases, preventing data loss and maintenance issues during migrations.
Core Features & Use Cases
- Safe Schema Alterations: Provides proven patterns for adding, dropping, or renaming columns and tables without risking data integrity.
- Migration Guidance: Offers detailed templates and decision trees for handling different migration scenarios, including recreating tables with foreign keys.
- Use Case: When updating a production database schema that involves changing primary keys or foreign key constraints, this Skill guides developers to execute the safest approach and verify data consistency after migration.
Quick Start
Use this Skill when creating a new migration to modify table schemas involving foreign keys, following the prescribed recreate-table pattern for safe execution and validation.