UNPKG

mongo-migrations

Version:

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

14 lines (11 loc) 270 B
class Migration { constructor(title, up, down, description) { this.title = title; this.up = up; this.down = down; this.description = description; this.timestamp = null; return Object.preventExtensions(this); } } module.exports = Migration;