/// The definitions of a database table.
////// This is implemented on the model-struct which is generated by the `#[derive(Table)]` attribute.
pubtraitTable: 'static {/// The name of the table. This is used verbatim in the SQL queries.
constNAME:&'staticstr;/// The user-defined struct representing a single row in the table.
/// This is the struct that has the `#[derive(Table)]` applied to it.
typeModel;}