SrGooglo f10808bc3a Refactor playlist and trackLyrics schemas for consistency
- Rename playlist fields: list -> items, cover/thumbnail -> image
- Remove unused playlist fields: publisher, cover, thumbnail
- Replace sync_audio_at with video_starts_at in trackLyrics schema
- Minor formatting and cleanup
2025-06-16 20:53:50 +00:00

21 lines
270 B
JavaScript

export default {
name: "TrackLyric",
collection: "tracks_lyrics",
schema: {
track_id: {
type: String,
required: true,
},
lrc: {
type: Object,
default: {},
},
video_source: {
type: String,
},
video_starts_at: {
type: String,
},
},
}