mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-11 18:32:50 +00:00
13 lines
243 B
JavaScript
13 lines
243 B
JavaScript
var mongoose = require('mongoose');
|
|
|
|
var postsSchema = new mongoose.Schema({
|
|
title: String,
|
|
date: String,
|
|
intro: String,
|
|
path: String,
|
|
fileName: String,
|
|
updated: {type: Date, default: Date.now}
|
|
});
|
|
|
|
|
|
mongoose.model('posts', postsSchema); |