Skip to main content
Module

x/denodb/lib/data-types.ts>FieldProps

MySQL, SQLite, MariaDB, PostgreSQL and MongoDB ORM for Deno
Latest
type alias FieldProps
import { type FieldProps } from "https://deno.land/x/denodb@v1.4.0/lib/data-types.ts";
definition: { type?: FieldTypeString; as?: string; primaryKey?: boolean; unique?: boolean; autoIncrement?: boolean; length?: number; allowNull?: boolean; precision?: number; scale?: number; values?: (number | string)[]; relationship?: Relationship; comment?: string; }