mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-26 21:30:42 +03:00
15 lines
No EOL
290 B
JavaScript
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]
|
|
|
|
})) |