mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-05-19 21:36:39 +00:00
15 lines
271 B
SQL
15 lines
271 B
SQL
-- mark a notification as read
|
|
UPDATE mcaptcha_notifications
|
|
SET read = TRUE
|
|
WHERE
|
|
mcaptcha_notifications.id = $1
|
|
AND
|
|
mcaptcha_notifications.rx = (
|
|
SELECT
|
|
id
|
|
FROM
|
|
mcaptcha_users
|
|
WHERE
|
|
name = $2
|
|
);
|