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

TableEntity

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

Table's parent is a schema.

interface TableEntity {
columns?: ColumnEntity[];
comment?: string;
constraints?: ConstraintEntity[];
customFeatures?: {
[key: string]: any;
}
;
indices?: IndexEntity[];
triggers?: TriggerEntity[];
}

§Properties

§
columns?: ColumnEntity[]
[src]

Table columns.

§
comment?: string
[src]

Comment associated with the table.

§
constraints?: ConstraintEntity[]
[src]

Table constraints.

§
customFeatures?: {
[key: string]: any;
}
[src]

Custom engine specific features.

§
indices?: IndexEntity[]
[src]

Table indices.

§
triggers?: TriggerEntity[]
[src]

Table triggers.