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