usecrate::Table;// TODO: Does this need the model generic???
/// The definition of a database column.
pubtraitColumn<M: Table> {/// The name of the column. This is used verbatim in the SQL queries.
constNAME:&'staticstr;/// The underlying type of the column.
typeType;}