mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
18 lines
340 B
JavaScript
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
|
|
}
|
|
}
|
|
} |