From cf2e37cd876651e799893e8fe5babb51a9e12dd7 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sun, 27 Nov 2022 21:21:04 +0100 Subject: more work on SQL refactoring --- src/exchangedb/0002-auditors.sql | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'src/exchangedb/0002-auditors.sql') diff --git a/src/exchangedb/0002-auditors.sql b/src/exchangedb/0002-auditors.sql index 3c18eef8..32ec8446 100644 --- a/src/exchangedb/0002-auditors.sql +++ b/src/exchangedb/0002-auditors.sql @@ -15,7 +15,7 @@ -- -CREATE TABLE IF NOT EXISTS auditors +CREATE TABLE auditors (auditor_uuid BIGINT GENERATED BY DEFAULT AS IDENTITY UNIQUE ,auditor_pub BYTEA PRIMARY KEY CHECK (LENGTH(auditor_pub)=32) ,auditor_name VARCHAR NOT NULL @@ -33,17 +33,3 @@ COMMENT ON COLUMN auditors.is_active IS 'true if we are currently supporting the use of this auditor.'; COMMENT ON COLUMN auditors.last_change IS 'Latest time when active status changed. Used to detect replays of old messages.'; - - -INSERT INTO exchange_tables - (name - ,version - ,action - ,partitioned - ,by_range) - VALUES - ('auditors' - ,'exchange-0001' - ,'create' - ,FALSE - ,FALSE); -- cgit v1.2.3