Start building a new column within the schema, specifying the columns `name`, `type`, and special attributes.
(self, name: &str, column_type: ColumnType)
| 122 | /// Start building a new column within the schema, specifying |
| 123 | /// the columns `name`, `type`, and special attributes. |
| 124 | pub fn column(self, name: &str, column_type: ColumnType) -> ColumnBuilder { |
| 125 | ColumnBuilder::new(self, name, column_type) |
| 126 | } |
| 127 | |
| 128 | /// Disable auto-increment on this table. Every insert must supply an |
| 129 | /// explicit `id`; the server will not allocate one, and the insert |