mirror of
https://github.com/sstent/expressmongotest.git
synced 2026-01-26 00:52:11 +00:00
19 lines
300 B
JavaScript
19 lines
300 B
JavaScript
var Schema = require('mongoose').Schema;
|
|
|
|
var workoutSchema = new Schema({
|
|
title: {
|
|
type: String
|
|
},
|
|
body: String,
|
|
author: {
|
|
type: Schema.ObjectId,
|
|
ref: 'User',
|
|
required: true
|
|
},
|
|
created_at: {
|
|
type: Date,
|
|
'default': Date.now
|
|
}
|
|
});
|
|
|
|
module.exports = workoutSchema; |