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

14 lines
257 B
JavaScript
Executable File

export default {
name: "PostLike",
collection: "post_likes",
schema: {
user_id: {
type: String,
required: true,
},
post_id: {
type: String,
required: true,
}
}
}