Skip to content

Instantly share code, notes, and snippets.

@deedubs
Created April 19, 2011 15:39
Show Gist options
  • Save deedubs/928501 to your computer and use it in GitHub Desktop.
Save deedubs/928501 to your computer and use it in GitHub Desktop.
A snippet from mongoose user def
...
# Define the schema for the user
schema = new db.Schema
name :
first_name : String
last_name : String
location : String
created_at :
type : Date
default : Date.now
updated_at :
type : Date
default : Date.now
# Store a bunch of twitter details
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment