You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
404 B
16 lines
404 B
// client.js
|
|
// Copyright (C) 2024 DTP Technologies, LLC
|
|
// All Rights Reserved
|
|
|
|
'use strict';
|
|
|
|
import mongoose from 'mongoose';
|
|
const Schema = mongoose.Schema;
|
|
|
|
const ClientSchema = new Schema({
|
|
user: { type: Schema.ObjectId, required: true, index: 1, ref: 'User' },
|
|
name: { type: String, required: true },
|
|
description: { type: String },
|
|
});
|
|
|
|
export default mongoose.model('Client', ClientSchema);
|