ColumnTypeName

View Source

Summary

Logical column type names used by schema definitions.

Signature

type ColumnTypeName =
  | "varchar"
  | "text"
  | "integer"
  | "bigint"
  | "decimal"
  | "boolean"
  | "uuid"
  | "date"
  | "time"
  | "timestamp"
  | "json"
  | "binary"
  | "enum";