0003-auditor_kycauth_in_inconsistency.sql (1836B)
1 -- 2 -- This file is part of TALER 3 -- Copyright (C) 2014--2026 Taler Systems SA 4 -- 5 -- TALER is free software; you can redistribute it and/or modify it under the 6 -- terms of the GNU General Public License as published by the Free Software 7 -- Foundation; either version 3, or (at your option) any later version. 8 -- 9 -- TALER is distributed in the hope that it will be useful, but WITHOUT ANY 10 -- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 11 -- A PARTICULAR PURPOSE. See the GNU General Public License for more details. 12 -- 13 -- You should have received a copy of the GNU General Public License along with 14 -- TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> 15 -- 16 17 SET search_path TO auditor; 18 CREATE TABLE IF NOT EXISTS auditor_kycauth_in_inconsistency 19 ( 20 row_id BIGINT GENERATED BY DEFAULT AS IDENTITY UNIQUE PRIMARY KEY, 21 bank_row_id INT8 NOT NULL, 22 amount_exchange_expected taler_amount NOT NULL, 23 amount_wired taler_amount NOT NULL, 24 account_pub BYTEA NOT NULL CHECK (LENGTH(account_pub)=32), 25 timestamp BIGINT NOT NULL, 26 account TEXT NOT NULL, 27 diagnostic TEXT NOT NULL, 28 suppressed BOOLEAN NOT NULL DEFAULT FALSE, 29 creation_date INT8 NOT NULL 30 DEFAULT (EXTRACT(EPOCH FROM NOW()) * 1000 * 1000)::BIGINT 31 ); 32 COMMENT ON TABLE auditor_kycauth_in_inconsistency 33 IS 'Report a KYCAUTH wire transfer where the bank and the exchange disagree.'; 34 COMMENT ON COLUMN auditor_kycauth_in_inconsistency.account_pub 35 IS 'account public key the transfer established, as known to whichever side did report the transfer'; 36 COMMENT ON COLUMN auditor_kycauth_in_inconsistency.account 37 IS 'bank account that was debited, as known to whichever side did report the transfer'; 38 COMMENT ON COLUMN auditor_kycauth_in_inconsistency.creation_date 39 IS 'for garbage collection';