pub struct Column<'a> {
pub identifier: &'a str,
pub identifier_span: Span,
pub type_: FullType<'a>,
pub auto_increment: bool,
}Expand description
A column in a schema
Fields§
§identifier: &'a str§identifier_span: SpanSpan of identifier
type_: FullType<'a>Type of the column
auto_increment: boolTrue if the column is auto_increment