-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMongoModel.js
37 lines (30 loc) · 867 Bytes
/
MongoModel.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* All code (c) 2011 CharityClick.net all rights reserved
*/
var Mongoose = require('mongoose');
Mongoose.connect('mongodb://localhost/charityclick'); // TODO: Configuration me thinks
var Schema = Mongoose.Schema, ObjectId = Schema.ObjectId;
var CharitySchema = new Schema({
id:ObjectId,
name:String,
website:String,
directDonationLink:String,
donationInstructions:String,
charityState:{ type:String, "default":"pending"},
userId:String
}, { strict:true });
var SessionSchema = new Schema({
id:ObjectId,
userId:String
}, { strict:true });
var UserSchema = new Schema({
id:ObjectId,
firstName: String,
email:String,
password:String,
confirmPassword:String
});
exports.CharitySchema = CharitySchema;
exports.SessionSchema = SessionSchema;
exports.UserSchema = UserSchema;
exports.Mongoose = Mongoose;