//! The same fields compile once the `chrono`, `uuid`, and `decimal` features
//! are on.
#[derive(sqlmodel::Model)]#[sqlmodel(table ="ledger")]structLedger{#[sqlmodel(primary_key)]id:i64,
at:chrono::NaiveDateTime,
token:uuid::Uuid,
total:rust_decimal::Decimal,
}fnmain(){let_=<Ledger assqlmodel::Model>::fields();}