/// Core Model trait for ORM-like functionality.
////// The `#[derive(Model)]` macro will provide the default implementations
/// for `table_name` and standard CRUD operations.
pubtraitModel: Send + Sync + Unpin + 'static + for<'r> ::sqlx::FromRow<'r, ::sqlx::postgres::PgRow> + ::serde::Serialize {/// The database table name for this model.
fntable_name()->&'staticstr;/// Primary key column name (defaults to "id").
fnprimary_key()->&'staticstr{"id"}}