1use serde::Deserialize; 2 3#[derive(Debug, sqlx::FromRow, Deserialize, Clone)] 4pub struct UserPlaylist { 5 pub xata_id: String, 6 pub user_id: String, 7 pub playlist_id: String, 8 #[serde(with = "chrono::serde::ts_seconds")] 9 pub xata_createdat: chrono::DateTime<chrono::Utc>, 10}