From get-convex-agent-skills-2
Plans Convex schema/data migrations on a widen-migrate-narrow pattern with @convex-dev/migrations. Handles breaking changes, backfills, table reshaping, and zero-downtime rollouts.
How this skill is triggered — by the user, by Claude, or both
Slash command
/get-convex-agent-skills-2:convex-migration-helperThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Safely migrate Convex schemas and data when making breaking changes.
Safely migrate Convex schemas and data when making breaking changes.
Convex will not let you deploy a schema that does not match the data at rest. This is the fundamental constraint that shapes every migration:
This means migrations follow a predictable pattern: widen the schema, migrate the data, narrow the schema.
Convex migrations run online, meaning the app continues serving requests while data is updated asynchronously in batches. During the migration window, your code must handle both old and new data formats.
When changing the shape of data, create a new field rather than modifying an existing one. This makes the transition safer and easier to roll back.
Unless you are certain, prefer deprecating fields over deleting them. Mark the
field as v.optional and add a code comment explaining it is deprecated and why
it existed.
// Before
users: defineTable({
name: v.string(),
});
// After - safe, new field is optional
users: defineTable({
name: v.string(),
bio: v.optional(v.string()),
});
posts: defineTable({
userId: v.id("users"),
title: v.string(),
}).index("by_user", ["userId"]);
users: defineTable({
name: v.string(),
email: v.string(),
}).index("by_email", ["email"]);
Every breaking migration follows the same multi-deploy pattern:
Deploy 1 - Widen the schema:
Between deploys - Migrate data:
Deploy 2 - Narrow the schema:
For any non-trivial migration, use the
@convex-dev/migrations
component. It handles batching, cursor-based pagination, state tracking, resume
from failure, dry runs, and progress monitoring.
See references/migrations-component.md for installation, setup, defining and
running migrations directly with npx convex run migrations:myMigration, dry
runs, status monitoring, and configuration options.
See references/migration-patterns.md for complete patterns with code examples
covering:
.collect() on large tables: Hits transaction limits or causes
timeouts. Use the migrations component for proper batched pagination.
.collect() is only safe for tables you know are small.dryRun: true to validate migration logic
before committing changes to production data. Catches bugs before they touch
real documents.v.optional and a
comment. Only delete after you are confident the data is no longer needed and
no code references it.@convex-dev/migrations componentnpx convex run migrations:myMigration '{"dryRun": true}'npx convex run migrations:myMigration and
monitor statusnpx claudepluginhub joshuarweaver/cascade-code-general-misc-3 --plugin get-convex-agent-skills-2Implements safe Convex schema migrations: add optional fields, backfill data with batch mutations, remove deprecated fields, zero-downtime deploys.
Plans and executes safe database schema migrations with rollback strategies, zero-downtime deployments, and data transformations. Covers Drizzle, Prisma, and raw SQL migrations.
Creates, validates, executes, and rolls back schema migrations for PostgreSQL, MySQL, MongoDB using Flyway, Alembic, Prisma, Knex.