Interface TableDescriptor

Information about a table, used when nameOnly is false in ListTablesOptions.

Field

name - The name of the tables.

Field

options - The creation options for the tables.

See

  • ListTablesOptions
  • Db.listTables
interface TableDescriptor {
    definition: ListTableDefinition;
    name: string;
}

Properties

Properties

The definition of the table (i.e. the columns and primaryKey fields).

name: string

The name of the tables.