Skip to content

Instantly share code, notes, and snippets.

@you-think-you-are-special
Created February 24, 2014 09:09
Show Gist options
  • Save you-think-you-are-special/9184264 to your computer and use it in GitHub Desktop.
Save you-think-you-are-special/9184264 to your computer and use it in GitHub Desktop.
Node.js
/**
* 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