Initialise the underlying Configuration with the jOOQ Migrations History.
(boolean baseline)
| 648 | * History. |
| 649 | */ |
| 650 | final void init(boolean baseline) { |
| 651 | history.init(); |
| 652 | |
| 653 | MigrationContext ctx = migrationContext(baseline); |
| 654 | if (TRUE.equals(ctx.settings().isMigrationSchemataCreateSchemaIfNotExists())) |
| 655 | for (Schema schema : ctx.migratedSchemas()) |
| 656 | dsl().createSchemaIfNotExists(schema).execute(); |
| 657 | } |
| 658 | |
| 659 | final Commit currentCommit() { |
| 660 | HistoryRecord currentRecord = history.currentHistoryRecord(true); |
no test coverage detected