1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-19 15:34:16 +00:00

12 lines
387 B
JavaScript
Executable File

export default {
name: "Post",
collection: "posts",
schema: {
user_id: { type: String, required: true },
timestamp: { type: String, required: true },
created_at: { type: Date, default: Date.now, required: true },
message: { type: String },
attachments: { type: Array, default: [] },
flags: { type: Array, default: [] },
}
}