Merge pull request #861 from corda/feature/ENT-1932/move_MigrationExporter

ENT-1932 Move MigrationExporter to the "node" module
This commit is contained in:
Tudor Malene
2018-05-21 15:25:59 +03:00
committed by GitHub
2 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class MigrationExporter(val parent: Path, val datasourceProperties: Properties,
createNewFile() createNewFile()
appendText(LIQUIBASE_HEADER) appendText(LIQUIBASE_HEADER)
appendText("\n\n") appendText("\n\n")
appendText("--changeset $CORDA_USER:initial_schema_for_${mappedSchema::class.simpleName!!}") appendText("--changeset ${CORDA_USER}:initial_schema_for_${mappedSchema::class.simpleName!!}")
appendText("\n") appendText("\n")
} }