123456789101112131415161718192021222324 |
- 'use strict';
- module.exports = app => {
- const { mongoose } = app;
- const { Schema } = mongoose;
- const LinksSchema = new Schema({
-
- name: {
- type: String,
- },
-
- path: {
- type: String,
- },
-
- id: {
- type: String,
- },
-
- links: {
- type: String,
- },
- });
- return mongoose.model('Links', LinksSchema);
- };
|