Skip to content

Commit

Permalink
Version 1.0.184
Browse files Browse the repository at this point in the history
  • Loading branch information
einar-saukas committed Feb 12, 2024
1 parent 9393b31 commit 6f2f8b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Binary file modified ZXDB_mysql.sql.zip
Binary file not shown.
2 changes: 2 additions & 0 deletions scripts/ZXDB_health_check.sql
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,8 @@ select * from (
select null,null,m.name,'label and magazine with same name' from magazines m inner join labels b on m.name = b.name where b.name not in ('48K','Gamestar','Kiddisoft','Maximum')
union all
select e.id,e.title,concat(t.text,': ',g.name,' (',g.id,')'),'series (or set) with a single title' from tags g inner join tagtypes t on g.tagtype_id = t.id inner join members m on m.tag_id = g.id inner join entries e on m.entry_id = e.id left join members m2 on m2.tag_id = g.id and m2.entry_id <> m.entry_id where m2.entry_id is null and t.id in ('S','U')
union all
select e.id,e.title,t.name,'demoparty title without category' from entries e inner join members m on m.entry_id = e.id inner join tags t on m.tag_id = t.id where t.tagtype_id = 'D' and m.category_id is null
) as warnings
order by entry_id, details;

Expand Down

0 comments on commit 6f2f8b8

Please sign in to comment.