Hi, I have a question about a relationship and I would like to know if this is a wrong way or is there a better way? These are sample tables, suppose that a post is created and this post can have many comments and can also have many responses, but the comments can only have one response. MY doubt is if the key table_post_id is redundant since it is in the comment as well as the response
TABLE_POST
id
name
TABLE_COMMENT
table_post_id
table_response_id
comment
TABLE_RESPONSE
table_post_id
response