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.

12 lines (10 loc) 234 B
import Migration from "devlien/migration"; export default class extends Migration { up(schema){ schema.create('@table', (table)=>{ // table.increments('id'); }); } down(schema){ } }