mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
18 lines
350 B
JavaScript
Executable File
18 lines
350 B
JavaScript
Executable File
export default {
|
|
name: "SavedPost",
|
|
collection: "savedPosts",
|
|
schema: {
|
|
post_id: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
user_id: {
|
|
type: "string",
|
|
required: true,
|
|
},
|
|
saved_at: {
|
|
type: "date",
|
|
default: Date.now,
|
|
}
|
|
}
|
|
} |