#database-design

[ follow ]
fromInfoWorld
1 week ago

Database design tips for developers

Every table has an ID field that should be an auto-incremented integer value, with an index on the ID. Rarely should a multiple-field key be needed.
Software development
fromSeangoedecke
2 weeks ago

Everything I know about good system design

Good system design often looks underwhelming, appearing as if nothing is going wrong for a long time. It creates ease and reliability without impressive complexity.
fromMarcin Wanago Blog - JavaScript, both frontend and backend
11 months ago

API with NestJS #161. Generated columns with the Drizzle ORM and PostgreSQL

With virtual generated columns, we avoid using additional disk storage. Instead, the database calculates their value on demand, for example, during a query. However, PostgreSQL currently lacks support for the virtual generated columns.
JavaScript
[ Load more ]