update-deps #77

Merged
philipp merged 2 commits from update-deps into staging 2023-11-21 14:16:17 +01:00
Showing only changes of commit 4ffe3deb54 - Show all commits

View File

@ -185,7 +185,7 @@ ORDER BY last_access DESC
"
SELECT id, name, pw, is_cox, is_admin, is_guest, deleted, last_access, is_tech, dob, weight, sex
FROM user
WHERE deleted = 0 AND dob is not null and weight is not null and sex is not null
WHERE deleted = 0 AND dob != '' and weight != '' and sex != ''
ORDER BY name
"
)