Here is a very quick and dirty fix for anyone who might do that to themself.
Restore the deleted posts to be visible:
Code:
UPDATE `forum`.`blog` SET `state` = 'visible' WHERE `blog`.`blogid` =1;
and if you are happy,
Code:
UPDATE `forum`.`blog` SET `state` = 'visible' WHERE `blog`.`blogid` >1;
and then restore the deleted comments to be visible:
Code:
UPDATE `forum`.`blog_text` SET `state` = 'visible' WHERE `blog_text`.`blogtextid` =1;
and if you are happy,
Code:
UPDATE `forum`.`blog_text` SET `state` = 'visible' WHERE `blog_text`.`blogtextid` >1;