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(), )