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 38 39 40 41 42 43 44 45
| module.exports=app=>{ const {mongoose}=app; const {Schema}=mongoose; const VisaOnArrivalSchema=new Schema( { OrderNumber:{type:String}, FullName:{type:String}, PassportNo:{type:String}, DepartureFlightNumber:{type:String}, TimeOfEntry:{type:String}, ArriveAtTheAirport:{type:String}, FlightNumber:{type:String}, EnglishName:{type:String}, Gender:{type:String}, DateOfBirth:{type:String}, Nationality:{type:String}, PassportIssueDate:{type:String}, PassportPeriodOfValidity:{type:String}, DepartureDate:{type:String}, DepartureCity:{type:String}, Type:{type:String}, Status:{type:String}, }, { timestamps: { createdAt: 'createAt', updatedAt: 'updateAt' } } ); return mongoose.model("VisaOnArrivalModel",VisaOnArrivalSchema,"visaonarrivals") }
|