Module

x/justaos_orm/mod.ts>ColumnDefinitionRaw

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 ColumnDefinitionRaw
import { type ColumnDefinitionRaw } from "https://dotland.deno.dev/x/justaos_orm@v7.1.0/mod.ts";
definition: { name: string; type?: string; not_null?: boolean; default?: unknown; unique?: boolean; foreign_key?: { table: string; column: string; on_delete?:
| "NO ACTION"
| "CASCADE"
| "SET NULL"
| "SET DEFAULT"
; }; }