Created
February 24, 2014 09:09
-
-
Save you-think-you-are-special/9184264 to your computer and use it in GitHub Desktop.
Node.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by alexander on 24.02.14. | |
*/ | |
var mongoose = require('mongoose') | |
, Schema = mongoose.Schema; | |
var User = new Schema({ | |
name: String, | |
created: {type: Date, default: Date.now} | |
}); | |
module.exports = mongoose.model('User', User); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment