mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 03:24:16 +00:00
14 lines
261 B
JavaScript
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,
|
|
}
|
|
}
|
|
} |