From 39eed5d85aad6dbd036113c79679ac42be6743b9 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 11 Dec 2025 17:09:03 -0500 Subject: [PATCH] reformatting --- .../quartz/nip01Core/store/sqlite/RightToVanishModule.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/quartz/src/androidMain/kotlin/com/vitorpamplona/quartz/nip01Core/store/sqlite/RightToVanishModule.kt b/quartz/src/androidMain/kotlin/com/vitorpamplona/quartz/nip01Core/store/sqlite/RightToVanishModule.kt index 715caeaba..fe8bc94b0 100644 --- a/quartz/src/androidMain/kotlin/com/vitorpamplona/quartz/nip01Core/store/sqlite/RightToVanishModule.kt +++ b/quartz/src/androidMain/kotlin/com/vitorpamplona/quartz/nip01Core/store/sqlite/RightToVanishModule.kt @@ -60,7 +60,9 @@ class RightToVanishModule { AFTER INSERT ON event_vanish FOR EACH ROW BEGIN - DELETE FROM event_headers WHERE created_at < NEW.created_at AND pubkey = NEW.pubkey; + DELETE FROM event_headers + WHERE created_at < NEW.created_at AND + pubkey = NEW.pubkey; END; """.trimIndent(), )