UNPKG

devlien

Version:

Devlien is a lightweight, zero-dependency Node.js framework with clean MVC structure, built-in ORM, and intuitive routing for rapid backend development.

14 lines (13 loc) 274 B
import Schema from "./Schema.js"; export default class Migration { build(type='up'){ let schema = new Schema(); // if(type=='up') this.up(schema); else this.down(schema); // return schema; } }