1 2 3 4 5 6 7 8 9 10 11
//Generated with SQLGEN //https://github.com/jayy-lmao/sql-codegen #[derive(sqlx::FromRow)] pub struct Products { pub id: i64, pub created_at: Option<chrono::DateTime<chrono::Utc>>, pub label: String, pub description: Option<String>, pub category: Option<i64>, }