| name | db-migrator |
| description | Database schema migration, versioning, and rollback management for SQL and NoSQL databases. Use when: (1) creating database migrations, (2) modifying table schemas, (3) adding/removing columns, (4) creating indexes, (5) data migrations, (6) rollback operations, (7) multi-environment sync, (8) seed data management. Supports PostgreSQL, MySQL, MongoDB, SQLite. Triggers: "migration", "alter table", "schema change", "database migration", "rollback migration", "knex", "prisma migrate", "flyway", "alembic". |
Database Migrator
Professional database schema migration and version control for production systems.
Core Workflow
1. Create Migration
npm run migrate:make create_users_table
npx prisma migrate dev --name add_user_email
python -m alembic revision -m "add_user_email"
2. Write Migration
exports.up = function(knex) {
return knex.schema.createTable('users', table => {
table.increments('id').primary();
table.string('email').notNullable().unique();
table.string('password_hash').notNullable();
table.timestamp('created_at').defaultTo(knex.fn.now());
table.timestamp('updated_at').defaultTo(knex.fn.now());
table.index('email');
});
};
exports.down = function(knex) {
return knex.schema.dropTable('users');
};
3. Run Migration
npm run migrate:up
npm run migrate:down
npm run migrate:reset
npm run migrate:refresh
Migration Best Practices
Always Include Down Migration
exports.up = (knex) => knex.schema.alterTable('users', t => {
t.string('phone').nullable();
});
exports.down = (knex) => knex.schema.alterTable('users', t => {
t.dropColumn('phone');
});
exports.up = (knex) => knex.schema.alterTable('users', t => {
t.string('phone').nullable();
});
exports.down = () => {};
Atomic Migrations
exports.up = (knex) => knex.schema.alterTable('users', t => {
t.string('phone');
});
exports.up = (knex) => knex.raw(`
UPDATE users SET phone = '000-000-0000' WHERE phone IS NULL
`);
exports.up = async (knex) => {
await knex.schema.alterTable('users', t => t.string('phone'));
await knex.raw('UPDATE users SET phone = ...');
await knex.schema.createTable('audit_log', ...);
};
Safe Column Operations
exports.up = (knex) => knex.raw(`
ALTER TABLE users
ADD COLUMN phone VARCHAR(20) DEFAULT ''
`);
exports.down = (knex) => knex.raw(`
ALTER TABLE users
DROP COLUMN phone
`);
exports.up = (knex) => knex.schema.alterTable('users', t => {
t.renameColumn('phone', 'phone_number');
});
Framework-Specific Patterns
Prisma (Node.js)
// schema.prisma
model User {
id Int @id @default(autoincrement())
email String @unique
posts Post[]
createdAt DateTime @default(now())
}
// Run migration
npx prisma migrate dev --name init
npx prisma migrate deploy // Production
Alembic (Python)
def upgrade():
op.add_column('users', sa.Column('email', sa.String(255)))
def downgrade():
op.drop_column('users', 'email')
alembic upgrade head
alembic downgrade -1
Flyway (Java/General)
CREATE TABLE users (
id SERIAL PRIMARY KEY,
email VARCHAR(255) NOT NULL UNIQUE,
created_at TIMESTAMP DEFAULT NOW()
);
ALTER TABLE users ADD COLUMN phone VARCHAR(20);
Data Migrations
exports.up = async (knex) => {
const users = await knex('users').whereNull('full_name');
for (const user of users) {
await knex('users')
.where({ id: user.id })
.update({
full_name: `${user.first_name} ${user.last_name}`
});
}
};
Production Safety
exports.up = (knex) => knex.raw(`
SET statement_timeout = '300s';
ALTER TABLE large_table ADD COLUMN new_field TEXT;
`);
exports.up = (knex) => knex.raw(`
CREATE INDEX CONCURRENTLY idx_users_email
ON users(email)
`);
Scripts
scripts/create_migration.sh - Generate migration file with timestamp
scripts/check_migrations.js - Compare local vs remote migration status
scripts/seed_data.js - Load seed data from JSON/CSV
References
references/postgres_types.md - PostgreSQL data types reference
references/mysql_types.md - MySQL data types reference
references/migration_templates/ - Framework-specific templates