This object represents a column at a relation table
Document| Property | Type | Description |
|---|---|---|
| name | Text | Name of the column |
| type | Text | The column type i.e. integer or string |
| length | Integer | Optional the max length of the column |
| precision | Integer | Optional the precision of the column |
| scale | Integer | Optional the scale of the column |
| unsigned | Boolean | Indicates whether the column is unsigned, relevant for integer types |
| fixed | Boolean | Indicates whether the column has a fixed length |
| notNull | Boolean | Indicates whether the column allows null |
| autoIncrement | Boolean | Indicates whether this column is an auto increment column |
| default | Optional defines the default value | |
| comment | Text | Optional a comment for this column |