Interface TableDescriptor

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

The definition is very similar to CreateTableDefinition, except for a couple key differences. See ListTableDefinition for more information.

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).

Very similar to CreateTableDefinition, except for a couple key differences. See ListTableDefinition for more information.

name: string

The name of the table.