Indicates if migrations must be executed in a transaction.
Creates table "migrations" that will store information about executed migrations.
Delete previously executed migration's data from the migrations table.
Executes all pending migrations. Pending migrations are migrations that are not yet executed, thus not saved in the database.
Gets all migrations that setup for this connection.
Inserts new executed migration's data into migrations table.
Loads all migrations that were executed and saved into the database.
Reverts last migration that were run.
Generated using TypeDoc
Executes migrations: runs pending and reverts previously executed migrations.