mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
17 lines
318 B
JavaScript
Executable File
17 lines
318 B
JavaScript
Executable File
export default {
|
|
name: "TrackLike",
|
|
collection: "tracks_likes",
|
|
schema: {
|
|
user_id: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
track_id: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
created_at: {
|
|
type: Date,
|
|
}
|
|
}
|
|
} |