Documentation
    Preparing search index...

    Storage implementation for umzug using the Quatrain backend adapter. Persists migration history directly in the target database using the MigrationRecord model.

    Implements

    • UmzugStorage
    Index

    Constructors

    Methods

    • Retrieves the list of all currently executed migrations.

      Returns Promise<string[]>

      An array of executed migration names.

    • Logs a successful migration execution.

      Parameters

      • params: { name: string }

        Contains the name of the migration.

      Returns Promise<void>

    • Removes a migration from the executed log.

      Parameters

      • params: { name: string }

        Contains the name of the migration.

      Returns Promise<void>