mirror of
https://github.com/SrIzan10/api.git
synced 2026-06-06 00:46:48 +00:00
10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
import { Model, Schema } from "mongoose"
|
|
|
|
const schema = new Schema({
|
|
name: { type: String, required: true },
|
|
timezone: { type: String, required: true },
|
|
});
|
|
|
|
const db = new Model(schema, 'sern-timezone');
|
|
|
|
export default db; |