From f28a20a79da6f29182d7afe5f63fae58a3d83aad Mon Sep 17 00:00:00 2001 From: scx1332 Date: Mon, 9 Sep 2024 13:40:45 +0200 Subject: [PATCH] Fix migration so it match deployed one --- .../migrations/20240422000000_clean_deposit_id.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/erc20_payment_lib_common/migrations/20240422000000_clean_deposit_id.sql b/crates/erc20_payment_lib_common/migrations/20240422000000_clean_deposit_id.sql index c8f4378a..16b41215 100644 --- a/crates/erc20_payment_lib_common/migrations/20240422000000_clean_deposit_id.sql +++ b/crates/erc20_payment_lib_common/migrations/20240422000000_clean_deposit_id.sql @@ -1,2 +1 @@ --- Deposit id is interpreted as composite of deposit id and deposit contract address. -DELETE FROM token_transfer WHERE deposit_id IS NOT NULL; \ No newline at end of file +-- Deposit id is interpreted as composite of deposit id and deposit contract address. DELETE FROM token_transfer WHERE deposit_id IS NOT NULL; \ No newline at end of file