UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

8 lines (7 loc) 462 B
/** * Kinda type of the column. Not a type in the database, but locally used type to determine what kind of column * we are working with. * For example, "primary" means that it will be a primary column, or "createDate" means that it will create a create * date column. */ export type ColumnMode = "regular" | "virtual" | "virtual-property" | "createDate" | "updateDate" | "deleteDate" | "version" | "treeChildrenCount" | "treeLevel" | "objectId" | "array";