Forum Moderators: open
Users table:
user_id (key)
fname
lname
email
favorite_color
Blog table:
post_id (key)
user_id (index this)
date_of_post
content
Comments table:
comment_id (key)
post_id (index this)
user_id (this is referring to the user_id of the person commenting. It's not required if non-users can comment)
comment_content
That's a pretty straight forward approach to a blog.