import { type EntitySchemaColumnOptions } from "https://deno.land/x/typeorm@v0.2.23-rc10/src/entity-schema/EntitySchemaColumnOptions.ts";
Properties
Column type's length. For example type = "string" and length = 100 means that ORM will create a column with type varchar(100).
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.
Indicates if column value is not updated by "save" operation. It means you'll be able to write this value only when you first time insert the object. Default value is "false".
Indicates if column value is updated by "save" operation. If false you'll be able to write this value only when you first time insert the object. Default value is "true".
Indicates if column is always selected by QueryBuilder and find operations. Default value is "true".
Specifies if this column will use AUTO_INCREMENT or not (e.g. generated number).
Extra column definition. Should be used only in emergency situations. Note that if you'll use this property auto schema generation will not work properly anymore. Avoid using it.
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.
Puts ZEROFILL attribute on to numeric column. Works only for MySQL. If you specify ZEROFILL for a numeric column, MySQL automatically adds the UNSIGNED attribute to the column
Return type of HSTORE column. Returns value as string or as object.
Indicates if this column is an array. Can be simply set to true or array length can be specified. Supported only by postgres.