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

14 lines
261 B
JavaScript

export default {
name: "TrackLike",
collection: "tracks_likes",
schema: {
user_id: {
type: String,
required: true,
},
track_id: {
type: String,
required: true,
}
}
}