1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-20 07:54:17 +00:00
2024-03-06 19:43:09 +00:00

18 lines
343 B
JavaScript
Executable File

export default {
name: "SyncEntry",
collection: "syncEntries",
schema: {
user_id: {
type: "string",
required: true,
},
key: {
type: "string",
required: true,
},
value: {
type: "string",
required: true,
}
}
}