SQLTabletype

{
	readonly columns: Readonly<Record<string, SQLTableColumn>>;
	readonly name: string;
	readonly sql?: string | undefined;
}
PropertyType
.columnsReadonly<Record<string, SQLTableColumn>>
required readonly
.namestring
required readonly
.sqlstring
readonly
Type
Readonly
Record
SQLTableColumn
Column definition in a live SQL table, pairing a column name with its raw definition statement.

Existing SQL table schema keyed by column name, as read back from the database.