mirror of
https://github.com/sstent/expressmongotest.git
synced 2026-01-25 08:34:53 +00:00
20 lines
318 B
JavaScript
20 lines
318 B
JavaScript
var Schema = require('mongoose').Schema;
|
|
|
|
var ArticleSchema = new Schema({
|
|
title: {
|
|
type: String,
|
|
unique: true
|
|
},
|
|
body: String,
|
|
author: {
|
|
type: Schema.ObjectId,
|
|
ref: 'User',
|
|
required: true
|
|
},
|
|
created_at: {
|
|
type: Date,
|
|
'default': Date.now
|
|
}
|
|
});
|
|
|
|
module.exports = ArticleSchema; |