aboutsummaryrefslogtreecommitdiff
path: root/src/exchangedb/drop-common.sql
diff options
context:
space:
mode:
authorMarco Boss <bossm8@bfh.ch>2022-04-04 16:40:39 +0200
committerMarco Boss <bossm8@bfh.ch>2022-04-04 16:40:39 +0200
commit970225516e92c6e16516759e9c05e689ee9fb06e (patch)
treec0958dc520983b5e6fb01645528ee0907427e0f8 /src/exchangedb/drop-common.sql
parent8c3e263b761f1eefa5328271931e725470497f9b (diff)
downloadexchange-970225516e92c6e16516759e9c05e689ee9fb06e.tar.xz
add p2p tables to sharding logic
Diffstat (limited to 'src/exchangedb/drop-common.sql')
-rw-r--r--src/exchangedb/drop-common.sql19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/exchangedb/drop-common.sql b/src/exchangedb/drop-common.sql
index 5c4bddfdb..b14a00c82 100644
--- a/src/exchangedb/drop-common.sql
+++ b/src/exchangedb/drop-common.sql
@@ -61,6 +61,25 @@ DROP FUNCTION IF EXISTS create_table_reserves;
DROP FUNCTION IF EXISTS create_table_cs_nonce_locks;
DROP FUNCTION IF EXISTS add_constraints_to_cs_nonce_locks_partition;
+DROP FUNCTION IF EXISTS create_table_purse_requests;
+DROP FUNCTION IF EXISTS add_constraints_to_purse_requests_partition;
+DROP FUNCTION IF EXISTS create_table_purse_merges;
+DROP FUNCTION IF EXISTS add_constraints_to_purse_merges_partition;
+DROP FUNCTION IF EXISTS create_table_account_merges;
+DROP FUNCTION IF EXISTS add_constraints_to_account_merges_partition;
+DROP FUNCTION IF EXISTS create_table_contracts;
+DROP FUNCTION IF EXISTS add_constraints_to_contracts_partition;
+DROP FUNCTION IF EXISTS create_table_history_requests;
+DROP FUNCTION IF EXISTS create_table_close_requests;
+DROP FUNCTION IF EXISTS create_table_purse_deposits;
+DROP FUNCTION IF EXISTS add_constraints_to_purse_deposits_partition;
+DROP FUNCTION IF EXISTS create_table_wad_out_entries;
+DROP FUNCTION IF EXISTS add_constraints_to_wad_out_entries_partition;
+DROP FUNCTION IF EXISTS create_table_wads_in;
+DROP FUNCTION IF EXISTS add_constraints_to_wads_in_partition;
+DROP FUNCTION IF EXISTS create_table_wad_in_entries;
+DROP FUNCTION IF EXISTS add_constraints_to_wad_in_entries_partition;
+
DROP FUNCTION IF EXISTS create_partitioned_table;
DROP FUNCTION IF EXISTS create_hash_partition;
DROP FUNCTION IF EXISTS create_range_partition;