gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libeufin] branch master updated: default


From: gnunet
Subject: [libeufin] branch master updated: default
Date: Tue, 18 Feb 2020 22:36:38 +0100

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new e3b67ab  default
e3b67ab is described below

commit e3b67ab317a61b44cf7f40fb83cdca1cf3206411
Author: Marcello Stanisci <address@hidden>
AuthorDate: Tue Feb 18 22:36:31 2020 +0100

    default
---
 nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt 
b/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt
index 1184386..9db3566 100644
--- a/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt
+++ b/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt
@@ -60,7 +60,7 @@ const val ID_MAX_LENGTH = 50
 object Pain001Table : IntIdTableWithAmount() {
     val msgId = integer("msgId").uniqueIndex().autoIncrement()
     val paymentId = integer("paymentId").uniqueIndex().autoIncrement() // id 
for this system
-    val date = date("fileDate")
+    val date = date("fileDate").date()
     val sum = amount("sum")
     val debtorAccount = text("debtorAccount")
     val endToEndId = integer("EndToEndId").uniqueIndex().autoIncrement() // id 
for this and the creditor system
@@ -68,7 +68,7 @@ object Pain001Table : IntIdTableWithAmount() {
     val creditorIban = text("creditorIban")
     val creditorBic = text("creditorBic")
     val creditorName = text("creditorName")
-    val submitted = bool("submitted") // indicates whether the PAIN message 
was sent to the bank.
+    val submitted = bool("submitted").default(false) // indicates whether the 
PAIN message was sent to the bank.
 }
 
 class Pain001Entity(id: EntityID<Int>) : IntEntity(id) {

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]