Options
All
  • Public
  • Public/Protected
  • All
Menu

Arguments for TableMetadata class, helps to construct an TableMetadata object.

Hierarchy

  • TableMetadataArgs

Index

Properties

Optional database

database: undefined | string

Database name. Used in MySql and Sql Server.

Optional engine

engine: undefined | string

Table's database engine type (like "InnoDB", "MyISAM", etc).

Optional name

name: undefined | string

Table's name. If name is not set then table's name will be generated from target's name.

Optional orderBy

orderBy: OrderByCondition | function

Specifies a default order by used for queries from this table when no explicit order by is specified.

Optional schema

schema: undefined | string

Schema name. Used in Postgres and Sql Server.

Optional synchronize

synchronize: undefined | true | false

Indicates if schema synchronization is enabled or disabled for this entity. If it will be set to false then schema sync will and migrations ignore this entity. By default schema synchronization is enabled for all entities.

target

target: Function | string

Class to which table is applied. Function target is a table defined in the class. String target is a table defined in a json schema.

type

type: TableType

Table type. Tables can be abstract, closure, junction, embedded, etc.

Generated using TypeDoc