The tablespace where to create the schema history table that will be used by Flyway.
This setting is only relevant for databases that do support the notion of tablespaces. Its value is simply ignored for all others.
./flyway -tablespace="xyz" info
flyway.tablespace=xyz
FLYWAY_TABLESPACE=xyz
Flyway.configure()
.tablespace("xyz")
.load()
flyway {
tablespace = 'xyz'
}
<configuration>
<tablespace>xyz</tablespace>
</configuration>