Skip to main content
Version: 6.2

Migrator

Implements

Index

Constructors

constructor

Methods

checkMigrationNeeded

  • checkMigrationNeeded(): Promise<boolean>
  • Checks current schema for changes.


    Returns Promise<boolean>

createInitialMigration

  • createInitialMigration(path?: string, name?: string): Promise<MigrationResult>
  • Creates initial migration. This generates the schema based on metadata, and checks whether all the tables are already present. If yes, it will also automatically log the migration as executed. Initial migration can be created only if the schema is already aligned with the metadata, or when no schema is present - in such case regular migration would have the same effect.


    Parameters

    • optionalpath: string
    • optionalname: string

    Returns Promise<MigrationResult>

createMigration

  • createMigration(path?: string, blank?: boolean, initial?: boolean, name?: string): Promise<MigrationResult>
  • Checks current schema for changes, generates new migration if there are any.


    Parameters

    • optionalpath: string
    • blank: boolean = false
    • initial: boolean = false
    • optionalname: string

    Returns Promise<MigrationResult>

down

  • Executes down migrations to the given point. Without parameter it will migrate one version down.


    Parameters

    Returns Promise<UmzugMigration[]>

getExecutedMigrations

  • Returns list of already executed migrations.


    Returns Promise<MigrationRow[]>

getPendingMigrations

  • Returns list of pending (not yet executed) migrations found in the migration directory.


    Returns Promise<UmzugMigration[]>

getStorage

up

  • Executes specified migrations. Without parameter it will migrate up to the latest version.


    Parameters

    Returns Promise<UmzugMigration[]>

staticregister