mirror of
https://github.com/filiprojek/nork.git
synced 2025-02-20 01:22:58 +01:00
16 lines
215 B
TypeScript
16 lines
215 B
TypeScript
import { Schema, model } from 'mongoose'
|
|
|
|
const modelSchema = new Schema<any>(
|
|
{
|
|
title: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
},
|
|
)
|
|
|
|
export default model('ModelName', modelSchema)
|