Fix faulty MangaUpdates score in db

Closes #117
This commit is contained in:
AntsyLich 2024-01-21 12:21:30 +06:00
parent 26815c7356
commit a024218410
No known key found for this signature in database

View file

@ -0,0 +1,4 @@
-- MangaUpdates score fixing --
UPDATE manga_sync
SET score = max(score, 0)
WHERE sync_id = 7;