gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] branch master updated: add additional DB constraints


From: gnunet
Subject: [taler-exchange] branch master updated: add additional DB constraints
Date: Mon, 24 Feb 2020 18:09:12 +0100

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

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new b77637ce add additional DB constraints
b77637ce is described below

commit b77637ce9f59fd2fdb46e950cf92042e79b0dcad
Author: Christian Grothoff <address@hidden>
AuthorDate: Mon Feb 24 18:09:10 2020 +0100

    add additional DB constraints
---
 src/auditordb/auditor-0001.sql | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/auditordb/auditor-0001.sql b/src/auditordb/auditor-0001.sql
index 3e666519..710b9a8a 100644
--- a/src/auditordb/auditor-0001.sql
+++ b/src/auditordb/auditor-0001.sql
@@ -67,14 +67,17 @@ CREATE TABLE IF NOT EXISTS auditor_progress_reserve
   ,last_reserve_out_serial_id INT8 NOT NULL DEFAULT 0
   ,last_reserve_recoup_serial_id INT8 NOT NULL DEFAULT 0
   ,last_reserve_close_serial_id INT8 NOT NULL DEFAULT 0
+  ,PRIMARY KEY (master_pub)
   );
 CREATE TABLE IF NOT EXISTS auditor_progress_aggregation
   (master_pub BYTEA CONSTRAINT master_pub_ref REFERENCES 
auditor_exchanges(master_pub) ON DELETE CASCADE
   ,last_wire_out_serial_id INT8 NOT NULL DEFAULT 0
+  ,PRIMARY KEY (master_pub)
   );
 CREATE TABLE IF NOT EXISTS auditor_progress_deposit_confirmation
   (master_pub BYTEA CONSTRAINT master_pub_ref REFERENCES 
auditor_exchanges(master_pub) ON DELETE CASCADE
   ,last_deposit_confirmation_serial_id INT8 NOT NULL DEFAULT 0
+  ,PRIMARY KEY (master_pub)
   );
 CREATE TABLE IF NOT EXISTS auditor_progress_coin
   (master_pub BYTEA CONSTRAINT master_pub_ref REFERENCES 
auditor_exchanges(master_pub) ON DELETE CASCADE
@@ -84,6 +87,7 @@ CREATE TABLE IF NOT EXISTS auditor_progress_coin
   ,last_refund_serial_id INT8 NOT NULL DEFAULT 0
   ,last_recoup_serial_id INT8 NOT NULL DEFAULT 0
   ,last_recoup_refresh_serial_id INT8 NOT NULL DEFAULT 0
+  ,PRIMARY KEY (master_pub)
   );
 CREATE TABLE IF NOT EXISTS wire_auditor_account_progress
   (master_pub BYTEA CONSTRAINT master_pub_ref REFERENCES 
auditor_exchanges(master_pub) ON DELETE CASCADE
@@ -92,11 +96,13 @@ CREATE TABLE IF NOT EXISTS wire_auditor_account_progress
   ,last_wire_wire_out_serial_id INT8 NOT NULL DEFAULT 0
   ,wire_in_off INT8
   ,wire_out_off INT8
+  ,PRIMARY KEY (master_pub,account_name)
   );
 CREATE TABLE IF NOT EXISTS wire_auditor_progress
   (master_pub BYTEA CONSTRAINT master_pub_ref REFERENCES 
auditor_exchanges(master_pub) ON DELETE CASCADE
   ,last_timestamp INT8 NOT NULL
   ,last_reserve_close_uuid INT8 NOT NULL
+  ,PRIMARY KEY (master_pub)
   );
 -- Table with all of the customer reserves and their respective
 -- balances that the auditor is aware of.

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



reply via email to

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