1
1
Fork 0
mirror of https://github.com/Akif9748/akf-forum.git synced 2025-01-12 01:23:20 +03:00
akf-forum/models/Thread.js

15 lines
No EOL
290 B
JavaScript

const { Schema, model } = require("mongoose")
module.exports = model('thread', new Schema({
id: { type: Number, unique: true },
authorID: Number,
author: Object,
title: String,
time: Number,
deleted: { type: Boolean, default: false },
messages: [Number]
}))