commit 4c5b5fe24fbb5224f2946d8f21559bf24bdb5c68 parent b6705d735dfcc715adcfeb9f2f5edbbbd90396dc Author: Florian Dold <florian.dold@gmail.com> Date: Thu, 18 Jun 2020 21:33:45 +0530 nullable creditor BIC Diffstat:
| M | nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt | | | 2 | +- |
| M | nexus/src/main/kotlin/tech/libeufin/nexus/Main.kt | | | 4 | ++-- |
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt @@ -173,7 +173,7 @@ object PaymentInitiationsTable : LongIdTable() { val endToEndId = long("EndToEndId") val subject = text("subject") val creditorIban = text("creditorIban") - val creditorBic = text("creditorBic") + val creditorBic = text("creditorBic").nullable() val creditorName = text("creditorName") val debitorIban = text("debitorIban") val debitorBic = text("debitorBic") diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/Main.kt b/nexus/src/main/kotlin/tech/libeufin/nexus/Main.kt @@ -449,8 +449,8 @@ fun serverMain(dbName: String) { return@intercept } - lessFrequentBackgroundTasks(client) - moreFrequentBackgroundTasks(client) + //lessFrequentBackgroundTasks(client) + //moreFrequentBackgroundTasks(client) routing { /** * Shows information about the requesting user.