summaryrefslogtreecommitdiff
path: root/src/auditordb/auditor-0002.sql.in
blob: ad459b47231a0ff237c375f558d607a74e84fa40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
--
-- This file is part of TALER
-- Copyright (C) 2014--2023 Taler Systems SA
--
-- TALER is free software; you can redistribute it and/or modify it under the
-- terms of the GNU General Public License as published by the Free Software
-- Foundation; either version 3, or (at your option) any later version.
--
-- TALER is distributed in the hope that it will be useful, but WITHOUT ANY
-- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
-- A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License along with
-- TALER; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
--

BEGIN;

SELECT _v.register_patch('auditor-0002', NULL, NULL);

SET search_path TO auditor;

DO $$ BEGIN
    CREATE TYPE taler_amount
      AS
      (val INT8
      ,frac INT4
      );
    COMMENT ON TYPE taler_amount
      IS 'Stores an amount, fraction is in units of 1/100000000 of the base value';
EXCEPTION
    WHEN duplicate_object THEN null;
END $$;

#include "0002-auditor_amount_arithmetic_inconsistency.sql"
#include "0002-auditor_balances.sql"
#include "0002-auditor_denomination_pending.sql"
#include "0002-auditor_exchange_signkeys.sql"
#include "0002-auditor_historic_denomination_revenue.sql"
#include "0002-auditor_historic_reserve_summary.sql"
#include "0002-auditor_progress.sql"
#include "0002-auditor_purses.sql"
#include "0002-auditor_reserves.sql"
#include "0002-auditor_deposit_confirmations.sql"

COMMIT;