An abstract migration framework for Node.js written in CoffeeScript that stores migration steps in a database. Version 0.1.2 is the latest stable release, with no recent updates. It is based on coffee-migrate but differs by persisting migrated file titles in the database. Requires manual implementation of database-specific methods (lock, release, getStoredMigrations, saveState, removeMigration) in a dbMigration.coffee file. This is a niche, unmaintained package with limited documentation and no active development; consider more robust alternatives like Knex.js or node-pg-migrate.
npm install coffee-db-migrateNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates installation, creating a migration file, implementing mandatory dbMigration.coffee methods, and running a migration with DB storage.
Ensure your migrations folder contains a valid CoffeeScript file named dbMigration.coffee with the required exports.
Consider using an actively maintained migration tool like Knex.js or node-pg-migrate.
Always use --db flag if you intend to use database storage.
Install globally: npm install -g coffee-db-migrate
Use CommonJS or convert to ES module with dynamic import.
No dependency data recorded yet.