1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-24 09:54:16 +00:00
2024-10-25 09:39:35 +00:00

18 lines
340 B
JavaScript

export default {
name: "VotePoll",
collection: "votes_poll",
schema: {
user_id: {
type: String,
required: true
},
post_id: {
type: String,
required: true
},
option_id: {
type: String,
required: true
}
}
}