import { Document, model, Schema, Types } from "mongoose"; import { Posting } from "."; export interface PostType { title: string; text?: string; theme: string; city: string; user?: Types.ObjectId | string; date?: Date; counts?: number; } const PostSchema = new Schema({ title: { type: String, required: true, }, text: { type: String, required: true, }, theme: { type: String, }, city: { type: String, }, user: { type: Schema.Types.ObjectId, ref: "User", }, date: { type: Date, default: Date.now, }, counts: { type: Number, }, }); export default model("Post", PostSchema);