2022-12-06 13:29:23 +01:00
|
|
|
--
|
|
|
|
-- 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 <http://www.gnu.org/licenses/>
|
|
|
|
--
|
|
|
|
|
|
|
|
BEGIN;
|
|
|
|
|
|
|
|
SET search_path TO exchange;
|
|
|
|
|
|
|
|
#include "exchange_do_withdraw.sql"
|
|
|
|
#include "exchange_do_batch_withdraw.sql"
|
|
|
|
#include "exchange_do_batch_withdraw_insert.sql"
|
|
|
|
#include "exchange_do_recoup_by_reserve.sql"
|
|
|
|
#include "exchange_do_deposit.sql"
|
|
|
|
#include "exchange_do_melt.sql"
|
|
|
|
#include "exchange_do_refund.sql"
|
|
|
|
#include "exchange_do_recoup_to_reserve.sql"
|
|
|
|
#include "exchange_do_recoup_to_coin.sql"
|
|
|
|
#include "exchange_do_gc.sql"
|
2022-12-29 00:34:36 +01:00
|
|
|
#include "exchange_do_purse_delete.sql"
|
2022-12-06 13:29:23 +01:00
|
|
|
#include "exchange_do_purse_deposit.sql"
|
2022-12-28 12:37:48 +01:00
|
|
|
#include "exchange_do_purse_merge.sql"
|
2022-12-06 13:29:23 +01:00
|
|
|
#include "exchange_do_reserve_purse.sql"
|
|
|
|
#include "exchange_do_expire_purse.sql"
|
|
|
|
#include "exchange_do_history_request.sql"
|
|
|
|
#include "exchange_do_reserve_open_deposit.sql"
|
|
|
|
#include "exchange_do_reserve_open.sql"
|
|
|
|
#include "exchange_do_insert_or_update_policy_details.sql"
|
2023-01-22 15:13:34 +01:00
|
|
|
#include "exchange_do_insert_aml_decision.sql"
|
|
|
|
#include "exchange_do_insert_aml_officer.sql"
|
2022-12-12 12:49:13 +01:00
|
|
|
#include "exchange_do_batch_reserves_in_insert.sql"
|
|
|
|
#include "exchange_do_batch_reserves_update.sql"
|
|
|
|
#include "exchange_do_batch2_reserves_in_insert.sql"
|
2022-12-19 16:02:43 +01:00
|
|
|
#include "exchange_do_batch4_reserves_in_insert.sql"
|
2022-12-20 15:09:03 +01:00
|
|
|
#include "exchange_do_batch8_reserves_in_insert.sql"
|
2023-01-23 13:57:34 +01:00
|
|
|
#include "exchange_do_refund_by_coin.sql"
|
|
|
|
#include "exchange_do_get_ready_deposit.sql"
|
2023-01-30 14:43:38 +01:00
|
|
|
#include "exchange_do_get_link_data.sql"
|
2022-12-20 15:09:03 +01:00
|
|
|
|
2022-12-06 13:29:23 +01:00
|
|
|
COMMIT;
|