davidjnevin / ddd_critiquewheel

Migration of Critique Wheel: a web app for the free exchange of critiques for writers of short fiction.
https://www.critiquewheel.com
1 stars 0 forks source link

Investigate database design for anti-patterns #90

Closed davidjnevin closed 1 year ago

davidjnevin commented 1 year ago
  1. Jaywalking
davidjnevin commented 1 year ago

Given: The many to one relationships are not expected to become many to many relations, and considering Simplicity: Easier to understand and implement. Performance: Generally faster for simple queries because there's no need to join an additional table. Data Integrity: Foreign key constraints ensure that the relationship between tables is maintained. Not considered an issue.