gnunet-svn
[Top][All Lists]
Advanced

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

[libeufin] branch master updated: Migrating to PostgreSQL: foreign keys


From: gnunet
Subject: [libeufin] branch master updated: Migrating to PostgreSQL: foreign keys issue
Date: Tue, 08 Dec 2020 14:16:58 +0100

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

ms pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new c7a8ed3  Migrating to PostgreSQL: foreign keys issue
c7a8ed3 is described below

commit c7a8ed393673c4f093a57bafcdb5c4a239520ea7
Author: MS <ms@taler.net>
AuthorDate: Tue Dec 8 14:16:08 2020 +0100

    Migrating to PostgreSQL: foreign keys issue
---
 nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt 
b/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt
index 79ee4dc..5d5e4cf 100644
--- a/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt
+++ b/nexus/src/main/kotlin/tech/libeufin/nexus/DB.kt
@@ -230,7 +230,7 @@ object OfferedBankAccountsTable : Table() {
  * FIXME(dold):  Allow other account and bank identifications than IBAN and BIC
  */
 object NexusBankAccountsTable : IdTable<String>() {
-    override val id = text("id").entityId()
+    override val id = text("id").entityId().uniqueIndex()
     val accountHolder = text("accountHolder")
     val iban = text("iban")
     val bankCode = text("bankCode")
@@ -296,7 +296,7 @@ class EbicsSubscriberEntity(id: EntityID<Int>) : 
IntEntity(id) {
 }
 
 object NexusUsersTable : IdTable<String>() {
-    override val id = text("id").entityId()
+    override val id = text("id").entityId().uniqueIndex()
     val passwordHash = text("password")
     val superuser = bool("superuser")
 }
@@ -309,7 +309,7 @@ class NexusUserEntity(id: EntityID<String>) : 
Entity<String>(id) {
 }
 
 object NexusBankConnectionsTable : IdTable<String>() {
-    override val id = NexusBankConnectionsTable.text("id").entityId()
+    override val id = 
NexusBankConnectionsTable.text("id").entityId().uniqueIndex()
     val type = text("type")
     val owner = reference("user", NexusUsersTable)
 }
@@ -322,7 +322,7 @@ class NexusBankConnectionEntity(id: EntityID<String>) : 
Entity<String>(id) {
 }
 
 object FacadesTable : IdTable<String>() {
-    override val id = FacadesTable.text("id").entityId()
+    override val id = FacadesTable.text("id").entityId().uniqueIndex()
     val type = text("type")
     val creator = reference("creator", NexusUsersTable)
 }

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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