12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- const mongoose = require('mongoose');
- const { Schema, model, SchemaTypes } = mongoose;
- const mongoosePaginate = require('mongoose-paginate-v2');
- mongoose.Types.ObjectId.isValid();
- const contactSchema = new Schema(
- {
- companionId: {
- type: String,
- default: null,
- },
- name: {
- type: String,
- default: null,
- },
- lastName: {
- type: String,
- default: null,
- },
- number: {
- type: String,
- default: null,
- },
- country: {
- type: String,
- default: null,
- },
- avatarUrl: {
- type: String,
- default: null,
- },
- color: {
- type: String,
- default: null,
- },
- pinned: {
- type: Boolean,
- default: false,
- },
- owner: {
- type: SchemaTypes.ObjectId,
- ref: 'user',
- },
- },
- { timestamps: true }
- );
- contactSchema.plugin(mongoosePaginate);
- const Contact = model('contact', contactSchema);
- module.exports = Contact;
|