Initial Commit

This commit is contained in:
2024-12-19 13:54:15 +05:30
commit 970a972b11
17 changed files with 1487 additions and 0 deletions

12
src/tenant/tenant.ts Normal file
View File

@@ -0,0 +1,12 @@
import mongoose from "mongoose";
export const tenantModel = mongoose.model(
"tenant",
new mongoose.Schema({
pid: String,
name: String,
avatar: String,
createdAt: Date,
deleted: Boolean,
})
);