gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libeufin] branch master updated: fix reference to wrong ty


From: gnunet
Subject: [GNUnet-SVN] [libeufin] branch master updated: fix reference to wrong type
Date: Fri, 27 Sep 2019 19:48:19 +0200

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

dold pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new aa7d199  fix reference to wrong type
aa7d199 is described below

commit aa7d1990c814dee5f237055b7e36ad86f569e6fc
Author: Florian Dold <address@hidden>
AuthorDate: Fri Sep 27 19:48:16 2019 +0200

    fix reference to wrong type
---
 src/main/kotlin/tech/libeufin/DB.kt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/kotlin/tech/libeufin/DB.kt 
b/src/main/kotlin/tech/libeufin/DB.kt
index 70abf04..8171850 100644
--- a/src/main/kotlin/tech/libeufin/DB.kt
+++ b/src/main/kotlin/tech/libeufin/DB.kt
@@ -70,7 +70,7 @@ enum class KeyStates {
 object BankCustomers: IntIdTable() {
     // Customer ID is the default 'id' field provided by the constructor.
     val name = varchar("name", CUSTOMER_NAME_MAX_LENGTH)
-    val ebicsSubscriber = reference("ebicsSubscriber", EbicsUsers)
+    val ebicsSubscriber = reference("ebicsSubscriber", EbicsSubscribers)
 }
 
 class BankCustomer(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]