You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- keep none, the gateways listener URL does not contain the gateway details information
15
+
-- INSERT INTO remote_gateway_details_temp SELECT gateway_id_bs58, derived_aes256_gcm_siv_key, gateway_listener, NULL, datetime(0, 'unixepoch') FROM remote_gateway_details WHERE derived_aes256_gcm_siv_key IS NOT NULL;
16
+
17
+
DROPTABLE remote_gateway_details;
18
+
ALTERTABLE remote_gateway_details_temp RENAME TO remote_gateway_details;
19
+
20
+
-- delete registrations with no key
21
+
DELETEFROM registered_gateway WHERE gateway_id_bs58 NOT IN ( SELECT gateway_id_bs58 FROM remote_gateway_details);
0 commit comments