mirror of
https://github.com/mihonapp/mihon.git
synced 2025-03-14 10:18:30 +03:00
* Allow partially read chapters to be marked as unread in updates screen * Review changes * Review changes 2
23 lines
No EOL
631 B
Text
23 lines
No EOL
631 B
Text
DROP VIEW IF EXISTS updatesView;
|
|
|
|
CREATE VIEW updatesView AS
|
|
SELECT
|
|
mangas._id AS mangaId,
|
|
mangas.title AS mangaTitle,
|
|
chapters._id AS chapterId,
|
|
chapters.name AS chapterName,
|
|
chapters.scanlator,
|
|
chapters.read,
|
|
chapters.bookmark,
|
|
chapters.last_page_read,
|
|
mangas.source,
|
|
mangas.favorite,
|
|
mangas.thumbnail_url AS thumbnailUrl,
|
|
mangas.cover_last_modified AS coverLastModified,
|
|
chapters.date_upload AS dateUpload,
|
|
chapters.date_fetch AS datefetch
|
|
FROM mangas JOIN chapters
|
|
ON mangas._id = chapters.manga_id
|
|
WHERE favorite = 1
|
|
AND date_fetch > date_added
|
|
ORDER BY date_fetch DESC; |