Migratify is a CLI-based MySQL database migration tool for Node.js projects, currently at version 2.0.6. It enables developers to manage schema changes through migration files, supporting database creation, table creation/updating, foreign keys, rollbacks, schema dumps, and loading migrations from existing databases. A newer feature is the database dispersion tool for syncing development databases. It uses JavaScript-based migration files and is available via npm. No recent updates or security incidents noted; package appears stable but low-maintenance.
npm install migratifyNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic workflow: install globally, create database via CLI, generate table migration, edit table definition, run migrate.
Use npm install -g migratify for CLI; local install is optional.
Use require('migratify/Migration.class') instead of require('migratify').Use module.exports = async () => { ... }Manually define types or use JSDoc if needed.
Run 'npm install -g migratify' to install globally.
Use require('migratify/Migration.class')Ensure module.exports = async () => { newTable.create(); }No dependency data recorded yet.