UNPKG

mongo-migrations

Version:

Asynchronous MongoDB migration framework for Node.js based on node-migrate

16 lines (11 loc) 205 B
class AbstractStore { constructor(dryRun) { this.dryRun = dryRun; } async save(set) { } async load() { } _shouldPersist() { return !this.dryRun; } } module.exports = AbstractStore;