DdlColumn
Defined in: js-api/src/entities/data-connection.ts:454
Column definition for DdlBuilder.createTable / alterTable(...).addColumn.
type is a dg type (string, int, bigint, float, bool, datetime) mapped
to the provider's native type server-side.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
defaultValue? | string | Always a string; typed by type and embedded as an escaped literal (DDL cannot bind parameters). | js-api/src/entities/data-connection.ts:462 |
name | string | - | js-api/src/entities/data-connection.ts:455 |
nullable? | boolean | Defaults to true. | js-api/src/entities/data-connection.ts:459 |
type | string | Dg type: string, int, bigint, float, bool, datetime. | js-api/src/entities/data-connection.ts:457 |