25 lines
1.2 KiB
SQL
25 lines
1.2 KiB
SQL
|
|
-- EDITS
|
|
|
|
UPDATE doki8902.message_comment SET latest_content = 'I heard it''s coming out next fall. Does anyone know if there will be VR support?' WHERE id = 14;
|
|
UPDATE doki8902.message_comment SET latest_content = 'I love historical fiction too. Could anyone recommend other novels similar to "The Nightingale"?' WHERE id = 16;
|
|
UPDATE doki8902.message_comment SET latest_content = 'Agreed, Christopher Nolan''s storytelling is brilliant, especially in movies like ''Inception''.' WHERE id = 17;
|
|
UPDATE doki8902.message_comment SET latest_content = 'Actually, I''ve come to think that marathon running might top them all in terms of endurance and physical demand.' WHERE id = 19;
|
|
UPDATE doki8902.message_comment SET latest_content = 'I''ve started to really enjoy Manchego lately, especially with a slice of quince paste. It pairs well with both cooking and snacking!' WHERE id = 22;
|
|
|
|
-- ACCEPT ALL NEW CONTENT
|
|
|
|
SELECT doki8902.func_approve_all_pending_content();
|
|
|
|
-- DELETE A USER
|
|
|
|
DELETE FROM doki8902.user WHERE id = 4;
|
|
|
|
-- DELETE MESSAGES SOFT
|
|
|
|
UPDATE doki8902.message_comment SET soft_delete = TRUE WHERE id IN (18, 19, 20);
|
|
|
|
-- DELETE POST HARD
|
|
|
|
DELETE FROM doki8902.post WHERE message_id = 2;
|