Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PostgresqlColumn

import type { PostgresqlColumn } from "https://googleapis.deno.dev/v1/datastream:v1.ts";

PostgreSQL Column.

interface PostgresqlColumn {
column?: string;
dataType?: string;
length?: number;
nullable?: boolean;
ordinalPosition?: number;
precision?: number;
primaryKey?: boolean;
scale?: number;
}

§Properties

§
column?: string
[src]

Column name.

§
dataType?: string
[src]

The PostgreSQL data type.

§
length?: number
[src]

Column length.

§
nullable?: boolean
[src]

Whether or not the column can accept a null value.

§
ordinalPosition?: number
[src]

The ordinal position of the column in the table.

§
precision?: number
[src]

Column precision.

§
primaryKey?: boolean
[src]

Whether or not the column represents a primary key.

§
scale?: number
[src]

Column scale.