
Migration Helper
- 2 installs
- 627 repo stars
- Updated May 20, 2026
- waynesutton/markdown-site
Plans and executes Convex schema migrations safely, including adding fields, creating tables, and data transformations that affect existing data.
About
This skill guides safe Convex schema migrations, distinguishing additive changes from breaking ones that require migration code. A developer uses it when adding required fields, changing types, splitting or merging tables, or transforming existing data.
- Additive changes are safe; breaking changes need migration code
- Covers renaming fields and nested-to-relational data moves
Migration Helper by the numbers
- 2 all-time installs (skills.sh)
- Ranked #741 of 911 Databases skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/waynesutton/markdown-site --skill migration-helperAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 627 |
| Last updated | May 20, 2026 |
| Repository | waynesutton/markdown-site ↗ |
What it does
Plans and executes Convex schema migrations safely, including adding fields, creating tables, and data transformations that affect existing data.
Files
Convex Migration Helper
Safely migrate Convex schemas and data when making breaking changes.
When to Use
- Adding new required fields to existing tables
- Changing field types or structure
- Splitting or merging tables
- Renaming fields
- Migrating from nested to relational data
Migration Principles
1. No Automatic Migrations: Convex doesn't automatically migrate data 2. Additive Changes are Safe: Adding optional fields or new tables is safe 3. Breaking Changes Need Code: Required fields, type changes need migration code 4. Zero-Downtime: Write migrations to keep app running during migration
Safe Changes (No Migration Needed)
- Adding optional fields
- Adding new tables
- Adding indexes
Breaking Changes (Migration Required)
Adding Required Field
Solution: Add as optional first, backfill data, then make required.
// Step 1: Add as optional
users: defineTable({
name: v.string(),
email: v.optional(v.string()),
})
// Step 2: Create migration
export const backfillEmails = internalMutation({
args: {},
handler: async (ctx) => {
const users = await ctx.db.query("users").collect();
for (const user of users) {
if (!user.email) {
await ctx.db.patch(user._id, {
email: `user-${user._id}@example.com`,
});
}
}
},
});
// Step 3: Run migration via dashboard or CLI
// npx convex run migrations:backfillEmails
// Step 4: Make field required (after all data migrated)
users: defineTable({
name: v.string(),
email: v.string(),
})Renaming Field
// Step 1: Add new field (optional)
// Step 2: Copy data with internalMutation
// Step 3: Update schema (remove old field)
// Step 4: Update all code to use new field nameMigration Patterns
Batch Processing
For large tables, process in batches:
export const migrateBatch = internalMutation({
args: {
cursor: v.optional(v.string()),
batchSize: v.number(),
},
handler: async (ctx, args) => {
const items = await ctx.db.query("largeTable").take(args.batchSize);
for (const item of items) {
await ctx.db.patch(item._id, { /* migration logic */ });
}
return {
processed: items.length,
hasMore: items.length === args.batchSize,
};
},
});Dual-Write Pattern
For zero-downtime migrations, write to both old and new structure during transition.
Scheduled Migration
Use cron jobs for gradual migration:
import { cronJobs } from "convex/server";
import { internal } from "./_generated/api";
const crons = cronJobs();
crons.interval(
"migrate-batch",
{ minutes: 5 },
internal.migrations.migrateBatch,
{ batchSize: 100 }
);
export default crons;Migration Checklist
- [ ] Identify breaking change
- [ ] Add new structure as optional/additive
- [ ] Write migration function (internal mutation)
- [ ] Test migration on sample data
- [ ] Run migration in batches if large dataset
- [ ] Verify migration completed (all records updated)
- [ ] Update application code to use new structure
- [ ] Deploy new code
- [ ] Remove old fields from schema
- [ ] Clean up migration code
Common Pitfalls
1. Don't make field required immediately: Always add as optional first 2. Don't migrate in a single transaction: Batch large migrations 3. Don't forget to update queries: Update all code using old field 4. Don't delete old field too soon: Wait until all data migrated 5. Test thoroughly: Verify migration on dev environment first
Source: https://github.com/get-convex/convex-agent-plugins