This commit is contained in:
2024-10-30 20:57:32 +05:00
parent d6809ff538
commit 2435aa2814
46 changed files with 802 additions and 334 deletions
+19
View File
@@ -7,6 +7,25 @@ const companySchema = new Schema(
required: true,
unique: true,
},
sessionLimit: {
required: true,
type: Number,
},
avatar: {
type: String,
},
phone: {
type: String,
},
site: {
type: String,
},
email: {
type: String,
},
address: {
type: String,
},
},
{
timestamps: true,