delete travel implemented

This commit is contained in:
nau
2016-09-05 15:14:16 +02:00
parent b852af593e
commit b93da44e86
5 changed files with 9 additions and 7 deletions

View File

@@ -17,7 +17,9 @@ var travelSchema = new Schema({
phone: { type: Number },
telegram: { type: String },
collectivized: { type: Boolean },
modality: { type: String } //if is an offering travel or asking for travel
modality: { type: String }, //if is an offering travel or asking for travel
joinedusers: { type: String },
acceptedusers: { type: String }
})
module.exports = mongoose.model('travelModel', travelSchema);