| 1234567891011 |
- const mongoose = require('mongoose');
- const Schema = mongoose.Schema;
- const ProjectSchema = new Schema({
- 'projectId': Number,
- 'webUrl': String,
- 'projectName': String
- });
- // const Project = mongoose.model('Project', ProjectSchema);
- module.exports = ProjectSchema;
|