Interface IPostgreSQLMigrationModule

A migration module.

interface IPostgreSQLMigrationModule {
    down: MigrationAction;
    up: MigrationAction;
}

Properties

Properties

The function to DOWNgrade a database.

Param: adapter

The underlying adapter.

Param: context

The underlying database context.

The function to UPgrade a database.

Param: adapter

The underlying adapter.

Param: context

The underlying database context.

Generated using TypeDoc