Skill: Create Database Migration

SkillDatabases & data

Safe workflow for creating and applying database schema changes. Use when the user needs to modify the database schema.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Skill: Create Database Migration skill

What this skill tells your AI

The instructions your AI receives, as published by girijashankarj/cursor-handbook in .cursor/skills/database/migration/SKILL.md and read by ahel’s review.

Trigger

When the user needs to modify the database schema.

Steps

Step 1: Plan the Change

  • Define what's changing and why
  • Check for backward compatibility
  • Identify affected queries and code
  • Determine if data migration is needed

Step 2: Create Migration File

  • Name: YYYYMMDDHHMMSS_descriptive_name.sql
  • Write UP migration (apply change)
  • Write DOWN migration (rollback)
  • Include required columns: {{CONFIG.database.timestampFields.created}}, {{CONFIG.database.timestampFields.updated}}, {{CONFIG.database.softDeleteField}}

Step 3: Safety Checks

  • No DELETE FROM statements (soft delete only)
  • New columns have defaults or are nullable
  • Indexes created with CONCURRENTLY for large tables
  • No column renames (add new → migrate → drop old)
  • Foreign keys have appropriate cascade rules

Step 4: Data Migration

If needed:

  • Write data migration script
  • Use batch processing (1000-5000 rows per batch)
  • Make it idempotent (safe to re-run)
  • Include progress logging

Step 5: Test Migration

  • Apply to development database
  • Verify data integrity
  • Test rollback
  • Test with production-like data volume
  • Verify affected queries still work

Step 6: Update Code

  • Update models/types to match new schema
  • Update affected queries
  • Run type check: {{CONFIG.testing.typeCheckCommand}}
  • Run affected tests

If a step fails

StepFailureRecovery
Step 2Syntax error in migrationFix SQL; re-run
Step 4Data migration fails mid-runScript should be idempotent; fix and re-run; if partial data, document manual cleanup
Step 5Test migration failsRun DOWN migration to revert; fix UP migration; retest
Step 5Rollback test failsFix DOWN migration; ensure DOWN fully reverts UP before retrying

Never apply migrations to production without testing UP and DOWN in a non-prod environment first.

Completion

Migration created, tested, and code updated. Ready for review.

Signals

GitHub stars
30
Forks
3
Last commit
Aug 2026
Advanced
Catalog kind
skill
Gateway key
migration
Source
github.com/girijashankarj/cursor-handbook