import { TableColumn } from "https://deno.land/x/typeorm@v0.2.23-rc10/src/index.ts";
Table's columns in the database represented in this class.
Properties
Specifies generation strategy if this column will use auto increment.
rowid
option supported only in CockroachDB.
Column type's length. Used only on some column types. For example type = "string" and length = "100" means that ORM will create a column with type varchar(100).
The precision for a decimal (exact numeric) column (applies only for decimal column), which is the maximum number of digits that are stored for the values.
The scale for a decimal (exact numeric) column (applies only for decimal column), which represents the number of digits to the right of the decimal point and must not be greater than precision.
Column type's display width. Used only on some column types in MySQL. For example, INT(4) specifies an INT with a display width of four digits.