Table

Description

The name of MigrateDB’s schema history table.

By default (single-schema mode) the schema history table is placed in the default schema for the connection provided by the datasource.

When the defaultSchema or schemas property is set (multi-schema mode), the schema history table is placed in the specified default schema.

Default

migratedb_state

Usage

Command line

./migratedb -table="my_schema_history_table" info

Configuration File

migratedb.table=my_schema_history_table

Environment Variable

MIGRATEDB_TABLE=my_schema_history_table

API

MigrateDb.configure()
    .table("my_schema_history_table")
    .load()