UNPKG

node-paytmpg

Version:

Payment Gateway Integration using NodeJS

12 lines (10 loc) 254 B
const mongoose = require('mongoose'); const UserSchema = mongoose.Schema({ email: String, id: String, name : String, phone : String, }, { timestamps: true }); module.exports = mongoose.model('npuser', UserSchema);