2020-01-17 12:22:11 +01:00
|
|
|
--
|
|
|
|
-- This file is part of TALER
|
2021-10-29 19:13:47 +02:00
|
|
|
-- Copyright (C) 2014--2021 Taler Systems SA
|
2020-01-17 12:22:11 +01:00
|
|
|
--
|
|
|
|
-- 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/>
|
|
|
|
--
|
|
|
|
|
|
|
|
-- Everything in one big transaction
|
|
|
|
BEGIN;
|
|
|
|
|
2020-11-08 23:47:11 +01:00
|
|
|
-- This script DROPs all of the tables we create.
|
2020-01-17 12:22:11 +01:00
|
|
|
--
|
|
|
|
-- Unlike the other SQL files, it SHOULD be updated to reflect the
|
|
|
|
-- latest requirements for dropping tables.
|
|
|
|
|
2022-03-02 10:50:51 +01:00
|
|
|
|
2021-10-31 12:49:51 +01:00
|
|
|
-- Unregister patch (exchange-0001.sql)
|
|
|
|
SELECT _v.unregister_patch('exchange-0001');
|
|
|
|
|
2021-10-29 19:13:47 +02:00
|
|
|
-- Drops for exchange-0001.sql
|
2022-03-17 14:16:19 +01:00
|
|
|
DROP TRIGGER IF EXISTS reserves_out_on_insert ON reserves_out;
|
|
|
|
DROP TRIGGER IF EXISTS reserves_out_on_delete ON reserves_out;
|
2022-03-18 15:40:24 +01:00
|
|
|
DROP TRIGGER IF EXISTS deposits_on_insert ON deposits;
|
|
|
|
DROP TRIGGER IF EXISTS deposits_on_delete ON deposits;
|
2022-03-19 14:05:45 +01:00
|
|
|
DROP TRIGGER IF EXISTS recoup_on_insert ON recoup;
|
|
|
|
DROP TRIGGER IF EXISTS recoup_on_delete ON recoup;
|
2021-10-14 14:45:10 +02:00
|
|
|
DROP TABLE IF EXISTS revolving_work_shards CASCADE;
|
2022-01-08 19:45:19 +01:00
|
|
|
DROP TABLE IF EXISTS extensions CASCADE;
|
2021-10-14 14:45:10 +02:00
|
|
|
DROP TABLE IF EXISTS auditors CASCADE;
|
|
|
|
DROP TABLE IF EXISTS auditor_denom_sigs CASCADE;
|
|
|
|
DROP TABLE IF EXISTS exchange_sign_keys CASCADE;
|
|
|
|
DROP TABLE IF EXISTS wire_accounts CASCADE;
|
|
|
|
DROP TABLE IF EXISTS signkey_revocations CASCADE;
|
|
|
|
DROP TABLE IF EXISTS work_shards CASCADE;
|
2020-01-17 12:22:11 +01:00
|
|
|
DROP TABLE IF EXISTS prewire CASCADE;
|
2020-01-18 23:51:17 +01:00
|
|
|
DROP TABLE IF EXISTS recoup CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_recoup_partition;
|
2020-01-18 23:51:17 +01:00
|
|
|
DROP TABLE IF EXISTS recoup_refresh CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_recoup_refresh_partition;
|
2020-01-17 12:22:11 +01:00
|
|
|
DROP TABLE IF EXISTS aggregation_tracking CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_aggregation_tracking_partition;
|
2020-01-17 12:22:11 +01:00
|
|
|
DROP TABLE IF EXISTS wire_out CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_wire_out_partition;
|
2021-10-29 19:13:47 +02:00
|
|
|
DROP TABLE IF EXISTS wire_targets CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_wire_targets_partition;
|
2020-01-17 12:22:11 +01:00
|
|
|
DROP TABLE IF EXISTS wire_fee CASCADE;
|
|
|
|
DROP TABLE IF EXISTS deposits CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_deposits_partition;
|
2021-11-06 19:57:34 +01:00
|
|
|
DROP TABLE IF EXISTS extension_details CASCADE;
|
2020-01-17 12:22:11 +01:00
|
|
|
DROP TABLE IF EXISTS refunds CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_refunds_partition;
|
2020-01-17 12:22:11 +01:00
|
|
|
DROP TABLE IF EXISTS refresh_commitments CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_refresh_commitments_partition;
|
2020-01-17 12:22:11 +01:00
|
|
|
DROP TABLE IF EXISTS refresh_revealed_coins CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_refresh_revealed_coins_partition;
|
2020-01-17 12:22:11 +01:00
|
|
|
DROP TABLE IF EXISTS refresh_transfer_keys CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_refresh_transfer_keys_partition;
|
2020-01-17 12:22:11 +01:00
|
|
|
DROP TABLE IF EXISTS known_coins CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_known_coins_partition;
|
2020-01-17 12:22:11 +01:00
|
|
|
DROP TABLE IF EXISTS reserves_close CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_reserves_close_partition;
|
2020-01-17 12:22:11 +01:00
|
|
|
DROP TABLE IF EXISTS reserves_out CASCADE;
|
2022-03-14 07:34:21 +01:00
|
|
|
DROP TABLE IF EXISTS reserves_out_by_reserve CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_reserves_out_partition;
|
2020-01-17 12:22:11 +01:00
|
|
|
DROP TABLE IF EXISTS reserves_in CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_reserves_in_partition;
|
2020-01-17 12:22:11 +01:00
|
|
|
DROP TABLE IF EXISTS reserves CASCADE;
|
|
|
|
DROP TABLE IF EXISTS denomination_revocations CASCADE;
|
|
|
|
DROP TABLE IF EXISTS denominations CASCADE;
|
2022-03-02 10:50:51 +01:00
|
|
|
DROP TABLE IF EXISTS cs_nonce_locks CASCADE;
|
|
|
|
DROP FUNCTION IF EXISTS add_constraints_to_cs_nonce_locks_partition;
|
2022-03-01 15:54:47 +01:00
|
|
|
|
2022-03-22 11:51:56 +01:00
|
|
|
DROP TABLE IF EXISTS partners CASCADE;
|
|
|
|
DROP TABLE IF EXISTS mergers CASCADE;
|
|
|
|
DROP TABLE IF EXISTS contracts CASCADE;
|
|
|
|
DROP TABLE IF EXISTS history_requests CASCADE;
|
|
|
|
DROP TABLE IF EXISTS close_requests CASCADE;
|
|
|
|
DROP TABLE IF EXISTS purse_requests CASCADE;
|
|
|
|
DROP TABLE IF EXISTS wads_out CASCADE;
|
|
|
|
DROP TABLE IF EXISTS wads_out_entries CASCADE;
|
|
|
|
DROP TABLE IF EXISTS wads_in CASCADE;
|
|
|
|
DROP TABLE IF EXISTS wads_in_entries CASCADE;
|
|
|
|
DROP TABLE IF EXISTS partner_accounts CASCADE;
|
|
|
|
|
|
|
|
|
2022-03-22 05:33:08 +01:00
|
|
|
DROP FUNCTION IF EXISTS exchange_do_withdraw;
|
|
|
|
DROP FUNCTION IF EXISTS exchange_do_withdraw_limit_check;
|
|
|
|
|
|
|
|
DROP FUNCTION IF EXISTS recoup_insert_trigger;
|
|
|
|
DROP FUNCTION IF EXISTS recoup_delete_trigger;
|
|
|
|
DROP FUNCTION IF EXISTS deposits_by_coin_insert_trigger;
|
|
|
|
DROP FUNCTION IF EXISTS deposits_by_coin_delete_trigger;
|
|
|
|
DROP FUNCTION IF EXISTS reserves_out_by_reserve_insert_trigger;
|
|
|
|
DROP FUNCTION IF EXISTS reserves_out_by_reserve_delete_trigger;
|
2022-03-14 07:34:21 +01:00
|
|
|
|
2021-12-25 13:56:33 +01:00
|
|
|
DROP FUNCTION IF EXISTS exchange_do_deposit;
|
|
|
|
|
|
|
|
DROP FUNCTION IF EXISTS exchange_do_melt;
|
|
|
|
|
|
|
|
DROP FUNCTION IF EXISTS exchange_do_refund;
|
|
|
|
|
|
|
|
DROP FUNCTION IF EXISTS exchange_do_recoup_to_coin;
|
|
|
|
|
|
|
|
DROP FUNCTION IF EXISTS exchange_do_recoup_to_reserve;
|
|
|
|
|
|
|
|
-- FIXME: drop other stored functions!
|
2021-10-14 14:45:10 +02:00
|
|
|
|
2022-03-02 10:50:51 +01:00
|
|
|
-- Unregister patch (partition-0001.sql)
|
|
|
|
-- SELECT _v.unregister_patch('partition-0001');
|
|
|
|
|
|
|
|
-- Drops for partition-0001.sql
|
|
|
|
DROP FUNCTION IF EXISTS create_table_partition;
|
|
|
|
|
|
|
|
DROP FUNCTION IF EXISTS create_partitions;
|
|
|
|
|
|
|
|
DROP FUNCTION IF EXISTS detach_default_partitions;
|
|
|
|
|
|
|
|
DROP FUNCTION IF EXISTS drop_default_partitions;
|
|
|
|
|
|
|
|
|
2020-01-17 12:22:11 +01:00
|
|
|
-- And we're out of here...
|
2022-03-01 12:11:58 +01:00
|
|
|
|
2020-01-17 12:22:11 +01:00
|
|
|
COMMIT;
|