134 lines
4.1 KiB
MySQL
134 lines
4.1 KiB
MySQL
--
|
|
-- 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('exchange-0002', NULL, NULL);
|
|
SET search_path TO exchange;
|
|
|
|
CREATE DOMAIN gnunet_hashcode
|
|
AS BYTEA
|
|
CHECK(LENGTH(VALUE) = 32);
|
|
|
|
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';
|
|
|
|
CREATE TYPE exchange_do_array_reserve_insert_return_type
|
|
AS
|
|
(transaction_duplicate BOOLEAN
|
|
,ruuid INT8
|
|
);
|
|
COMMENT ON TYPE exchange_do_array_reserve_insert_return_type
|
|
IS 'Return type for exchange_do_array_reserves_insert() stored procedure';
|
|
|
|
CREATE TYPE exchange_do_select_deposits_missing_wire_return_type
|
|
AS
|
|
(
|
|
batch_deposit_serial_id INT8,
|
|
total_amount taler_amount,
|
|
wire_target_h_payto BYTEA,
|
|
deadline INT8
|
|
);
|
|
COMMENT ON TYPE exchange_do_select_deposits_missing_wire_return_type
|
|
IS 'Return type for exchange_do_select_deposits_missing_wire';
|
|
|
|
CREATE TYPE exchange_do_select_aggregations_above_serial_return_type
|
|
AS
|
|
(
|
|
batch_deposit_serial_id INT8,
|
|
aggregation_serial_id INT8,
|
|
total_amount taler_amount
|
|
);
|
|
COMMENT ON TYPE exchange_do_select_aggregations_above_serial_return_type
|
|
IS 'Return type for exchange_do_select_aggregations_above_serial';
|
|
|
|
|
|
#include "0002-denominations.sql"
|
|
#include "0002-denomination_revocations.sql"
|
|
#include "0002-wire_targets.sql"
|
|
#include "0002-kyc_alerts.sql"
|
|
#include "0002-wire_fee.sql"
|
|
#include "0002-global_fee.sql"
|
|
#include "0002-wire_accounts.sql"
|
|
#include "0002-auditors.sql"
|
|
#include "0002-auditor_denom_sigs.sql"
|
|
#include "0002-exchange_sign_keys.sql"
|
|
#include "0002-signkey_revocations.sql"
|
|
#include "0002-extensions.sql"
|
|
#include "0002-policy_fulfillments.sql"
|
|
#include "0002-policy_details.sql"
|
|
#include "0002-profit_drains.sql"
|
|
#include "0002-legitimization_measures.sql"
|
|
#include "0002-legitimization_outcomes.sql"
|
|
#include "0002-legitimization_processes.sql"
|
|
|
|
|
|
#include "0002-reserves.sql"
|
|
#include "0002-reserve_history.sql"
|
|
#include "0002-reserves_in.sql"
|
|
#include "0002-reserves_close.sql"
|
|
#include "0002-close_requests.sql"
|
|
#include "0002-reserves_open_deposits.sql"
|
|
#include "0002-reserves_open_requests.sql"
|
|
#include "0002-known_coins.sql"
|
|
#include "0002-coin_history.sql"
|
|
#include "0002-batch_deposits.sql"
|
|
#include "0002-coin_deposits.sql"
|
|
#include "0002-refunds.sql"
|
|
#include "0002-wire_out.sql"
|
|
#include "0002-aggregation_transient.sql"
|
|
#include "0002-aggregation_tracking.sql"
|
|
#include "0002-unique_refresh_blinding_seed.sql"
|
|
#include "0002-refresh.sql"
|
|
#include "0002-unique_withdraw_blinding_seed.sql"
|
|
#include "0002-withdraw.sql"
|
|
#include "0002-recoup.sql"
|
|
#include "0002-recoup_refresh.sql"
|
|
#include "0002-prewire.sql"
|
|
#include "0002-cs_nonce_locks.sql"
|
|
#include "0002-purse_requests.sql"
|
|
#include "0002-purse_merges.sql"
|
|
#include "0002-account_merges.sql"
|
|
#include "0002-purse_decision.sql"
|
|
#include "0002-contracts.sql"
|
|
#include "0002-history_requests.sql"
|
|
#include "0002-purse_deposits.sql"
|
|
#include "0002-wads_in.sql"
|
|
#include "0002-wad_in_entries.sql"
|
|
#include "0002-wads_out.sql"
|
|
#include "0002-wad_out_entries.sql"
|
|
#include "0002-work_shards.sql"
|
|
#include "0002-revolving_work_shards.sql"
|
|
#include "0002-partners.sql"
|
|
#include "0002-partner_accounts.sql"
|
|
#include "0002-purse_actions.sql"
|
|
#include "0002-purse_deletion.sql"
|
|
|
|
#include "0002-kyc_attributes.sql"
|
|
|
|
#include "0002-kycauths_in.sql"
|
|
#include "0002-kyc_events.sql"
|
|
#include "0002-aml_staff.sql"
|
|
#include "0002-aml_history.sql"
|
|
|
|
#include "0002-statistics.sql"
|
|
|
|
COMMIT;
|