Created
April 19, 2011 15:39
-
-
Save deedubs/928501 to your computer and use it in GitHub Desktop.
A snippet from mongoose user def
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
... | |
# 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