From b25679a373067c84c692dc613971bd16ab6f1073 Mon Sep 17 00:00:00 2001 From: scx1332 Date: Mon, 9 Sep 2024 13:44:33 +0200 Subject: [PATCH] Fix migration so it match deployed one --- .../migrations/20240422000000_clean_deposit_id.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 16b41215..c11481ea 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 +1,2 @@ --- 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