ledger-on-sql: Remove the reference to the removed "common" migrations. (#5888)

This is producing a warning.

CHANGELOG_BEGIN
CHANGELOG_END
This commit is contained in:
Samir Talwar 2020-05-07 14:56:56 +02:00 committed by GitHub
parent 25cb022eed
commit 17f4dc2716
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -211,10 +211,7 @@ object Database {
.placeholders(Map("table.prefix" -> TablePrefix).asJava)
.table(TablePrefix + Flyway.configure().getTable)
.dataSource(adminConnectionPool)
.locations(
"classpath:/com/daml/ledger/on/sql/migrations/common",
s"classpath:/com/daml/ledger/on/sql/migrations/${system.name}",
)
.locations(s"classpath:/com/daml/ledger/on/sql/migrations/${system.name}")
.load()
def migrate(): Database = {