Join Nostr
2025-05-05 05:07:27 GMT

Awiteb on Nostr: `momostr.pink` just nuked my relay with 75,942 deletion request. I used this SQL to ...

`momostr.pink` just nuked my relay with 75,942 deletion request.

I used this SQL to count them
```
SELECT COUNT(*)
FROM event
WHERE content LIKE '%pink.momostr%'
AND kind = 5;
```
And this to delete them
```
DELETE FROM event
WHERE content LIKE '%pink.momostr%'
AND kind = 5;
```