-- -- This file is part of TALER -- Copyright (C) 2014--2022 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 -- BEGIN; SELECT _v.register_patch('auditor-0002', NULL, NULL); SET search_path TO auditordb; 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'; #include "0002-auditor_denomination_pending.sql" #include "0002-auditor_wire_fee_balance.sql" #include "0002-auditor_balance_summary.sql" #include "0002-auditor_exchange_signkeys.sql" #include "0002-auditor_historic_denomination_revenue.sql" #include "0002-auditor_historic_reserve_summary.sql" #include "0002-auditor_predicted_result.sql" #include "0002-auditor_progress_aggregation.sql" #include "0002-auditor_progress_coin.sql" #include "0002-auditor_progress_deposit_confirmation.sql" #include "0002-auditor_progress_purse.sql" #include "0002-auditor_progress_reserve.sql" #include "0002-auditor_purse_summary.sql" #include "0002-auditor_purses.sql" #include "0002-auditor_reserve_balance.sql" #include "0002-auditor_reserves.sql" #include "0002-deposit_confirmations.sql" #include "0002-wire_auditor_account_progress.sql" #include "0002-wire_auditor_progress.sql" COMMIT;