suppose I needed to design a database for a bulltin-board website.
something like stackoverflow which means there is a topic and a series of posts
but, no threaded posts (not a tree-based design)
I thought about two main options:
- Topic table and Post table. Post has "topic_id" field
- no Topic table. only one big Post table.
what do you think is the more preferable option?