Interface CreateTableDefinition

The definition for creating a new table through the Data API, using a bespoke schema definition syntax.

See Db.createTable for more info.

interface CreateTableDefinition {
    columns: CreateTableColumnDefinitions;
    primaryKey: CreateTablePrimaryKeyDefinition;
}

Properties

Properties

The columns to create in the table.

The primary key definition for the table.