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

ColumnMetadata

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

Metadata for a column.

interface ColumnMetadata {
isPrimaryKey?: boolean;
name?: string;
ordinalPosition?: bigint;
type?: Type;
}

§Properties

§
isPrimaryKey?: boolean
[src]

Indicates whether the column is a primary key column.

§
name?: string
[src]

Name of the column.

§
ordinalPosition?: bigint
[src]

Ordinal position of the column based on the original table definition in the schema starting with a value of 1.

§
type?: Type
[src]

Type of the column.