Module

x/justaos_orm/src/query/CreateQuery.ts>ColumnDefinitionNative

JUSTAOS's ORM (Object–relational mapping) tool is built for Deno and provides transparent persistence for JavaScript objects to Postgres database.
Go to Latest
type alias ColumnDefinitionNative
import { type ColumnDefinitionNative } from "https://dotland.deno.dev/x/justaos_orm@v6.4.0/src/query/CreateQuery.ts";
definition: { name: string; data_type: string; not_null?: boolean; default?: unknown; unique?: boolean; foreign_key?: { table: string; column: string; on_delete?:
| "NO ACTION"
| "CASCADE"
| "SET NULL"
| "SET DEFAULT"
; }; }