SQLTabletype
{
readonly columns: Readonly<Record<string, SQLTableColumn>>;
readonly name: string;
readonly sql?: string | undefined;
}| Property | Type | |
|---|---|---|
.columns | Readonly<Record<string, SQLTableColumn>> | required readonly |
.name | string | required readonly |
.sql | string | 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.