UNPKG

maglev

Version:

Preconfigured NodeJS framework

12 lines (9 loc) 248 B
import { Schema } from 'mongoose'; export const name = 'Article'; export default function createModel(server, callback) { const schema = new Schema({ title: { type: String } }); callback(null); return server.db.model(name, schema); }