agentsclimarketplace

Database design

Skill krzysztofsurdy/code-virtuoso/skills/knowledge/database-design

Database design patterns and data modeling for relational and NoSQL databases. Use when the user asks to design a database schema, normalize or denormalize tables, create indexing strategies, plan schema migrations, model temporal data, implement audit trails, set up table partitioning, or optimize data access patterns. Covers entity relationships, naming conventions, constraint design, migration safety, and performance-oriented schema decisions.From its SKILL.md

Install
npx -y skills add krzysztofsurdy/code-virtuoso --skill database-design

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 20 stars20 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

10.9 KB, ~2.4k tokens by cl100k_base, as published. Nobody here has run it

Database Design

Good database design determines the long-term maintainability, performance, and correctness of any data-driven application. Schema decisions made early are expensive to reverse later. Every table, column, index, and constraint should exist for a reason backed by access patterns and business rules.

Data Modeling Principles

Start from Access Patterns

Design tables around how the application reads and writes data, not around how entities look in a domain model. Two questions drive every schema decision:

  1. What queries will run most frequently? - these determine table structure, indexes, and denormalization choices
  2. What consistency guarantees does the data need? - these determine normalization level, constraints, and transaction boundaries

Entity Relationships

RelationshipImplementationWhen to Use
One-to-oneForeign key with UNIQUE constraint on the child tableSplitting rarely-accessed columns into a separate table, or enforcing exactly-one semantics
One-to-manyForeign key on the child table referencing the parentOrders to order items, users to addresses
Many-to-manyJoin table with composite primary keyTags to articles, students to courses
Many-to-many with attributesJoin table with its own columns beyond the two foreign keysEnrollment with grade, membership with role
Self-referentialForeign key referencing the same tableOrg charts, category trees, threaded comments

Naming Conventions

Consistent naming prevents confusion across teams and tools:

  • Tables: plural nouns in snake_case (order_items, user_addresses)
  • Columns: singular snake_case describing the value (created_at, total_amount)
  • Foreign keys: <referenced_table_singular>_id (user_id, order_id)
  • Indexes: idx_<table>_<columns> (idx_orders_user_id_created_at)
  • Constraints: chk_<table>_<rule>, uq_<table>_<columns>, fk_<table>_<referenced>

Normalization vs Denormalization

Normal Forms

FormRuleViolation Example
1NFEvery column holds atomic values; no repeating groupsStoring comma-separated tags in a single column
2NFEvery non-key column depends on the entire primary keyIn a composite-key table, a column depending on only part of the key
3NFNo non-key column depends on another non-key columnStoring both city and zip_code when zip determines city
BCNFEvery determinant is a candidate keyA scheduling table where room determines building but room is not a key

When to Denormalize

Normalization prevents anomalies but adds JOINs. Denormalize selectively when:

  • Read-heavy workloads dominate and JOIN cost is measurable in profiling
  • Reporting tables need pre-aggregated data that would otherwise require expensive queries
  • Caching a computed value avoids recalculating on every read (e.g., order_total stored on the order row)
  • Document-oriented access retrieves an entire aggregate in one read

Rules for safe denormalization:

  1. Always keep the normalized source of truth - denormalized data is a derived cache
  2. Define how and when the denormalized copy is updated (trigger, application event, batch job)
  3. Monitor for drift between the source and the copy
  4. Document why the denormalization exists and what access pattern it serves

Choosing a Database Type

TypeStrengthsFits When
Relational (PostgreSQL, MySQL)ACID transactions, complex queries, mature tooling, JOINsStructured data with relationships, transactional workloads, most CRUD applications
Document (MongoDB, DynamoDB)Flexible schema, nested data, horizontal scalingAggregates accessed as a unit, rapidly evolving schemas, per-tenant isolation
Key-value (Redis, Memcached)Sub-millisecond reads, simple data modelSession storage, caching, counters, rate limiting
Column-family (Cassandra, ScyllaDB)High write throughput, wide rows, linear scalingTime-series, IoT telemetry, append-heavy workloads
Graph (Neo4j, Neptune)Traversal queries, relationship-centric dataSocial networks, recommendation engines, fraud detection
Time-series (TimescaleDB, InfluxDB)Optimized for time-stamped data, automatic partitioningMetrics, monitoring, financial tick data

Polyglot persistence - using different databases for different parts of the same system - is valid when access patterns genuinely differ. It is not valid as a way to avoid learning one database well.


Indexing Fundamentals

Indexes accelerate reads at the cost of slower writes and additional storage. Every index must justify its existence through query patterns.

Index Types

TypeStructureBest For
B-treeBalanced tree, sorted dataEquality and range queries, ORDER BY, most general-purpose indexing
HashHash tableExact equality lookups only; no range support
GiSTGeneralized search treeSpatial data, geometric queries, range types, nearest-neighbor
GINGeneralized inverted indexFull-text search, JSONB containment, array membership
BRINBlock range indexLarge tables with naturally ordered data (timestamps, sequential IDs)

Composite Index Design

The order of columns in a composite index matters. The leftmost prefix rule means a composite index on (a, b, c) supports queries filtering on (a), (a, b), or (a, b, c), but not (b, c) alone.

Column ordering guidelines:

  1. Equality conditions first - columns compared with =
  2. Range conditions last - columns compared with >, <, BETWEEN
  3. Most selective column first among equals

Covering and Partial Indexes

  • Covering index: includes all columns the query needs, so the database reads only the index. Use INCLUDE (PostgreSQL) or just add columns to the index key.
  • Partial index: indexes only rows matching a condition, reducing size and write overhead. Ideal for querying a small subset of a large table (e.g., WHERE status = 'pending').

See Indexing Strategies Reference for detailed index types, EXPLAIN analysis, and anti-patterns.


Schema Evolution

Schema changes are inevitable. The question is whether they break running applications.

Backward-Compatible Changes (Safe)

  • Adding a new nullable column
  • Adding a new table
  • Adding a new index (may lock briefly on some engines)
  • Widening a column type (e.g., VARCHAR(50) to VARCHAR(100))

Breaking Changes (Require Migration Strategy)

  • Renaming or removing a column
  • Changing a column type in incompatible ways
  • Adding a NOT NULL constraint to an existing column with null data
  • Splitting or merging tables

The Expand-Contract Pattern

For breaking changes in production with zero downtime:

  1. Expand - add the new structure alongside the old one
  2. Migrate - backfill data from old to new, dual-write during transition
  3. Switch - update application code to use the new structure
  4. Contract - remove the old structure once nothing references it

See Migration Patterns Reference for zero-downtime strategies, rollback techniques, and multi-tool examples.


Partitioning and Sharding

Table Partitioning (Single Database)

StrategyHow It WorksUse Case
RangeRows split by value ranges (e.g., by month)Time-series data, log tables, archival
ListRows split by discrete values (e.g., by region)Multi-tenant data, geographic segmentation
HashRows distributed by hash of a columnEven distribution when no natural range exists

Sharding (Multiple Databases)

Sharding distributes data across separate database instances. Use it only after single-instance optimizations (indexing, caching, read replicas) are exhausted.

Shard key selection criteria:

  • High cardinality - many distinct values to distribute evenly
  • Present in most queries - avoids scatter-gather across all shards
  • Stable - values that do not change after creation
  • Avoid hotspots - do not shard by a value that concentrates writes (e.g., current date)

Quick Reference: Common Design Mistakes

MistakeConsequenceFix
No foreign key constraintsOrphaned rows, inconsistent dataAlways define foreign keys unless there is a documented reason not to
Over-indexingSlow writes, wasted storageIndex only columns used in WHERE, JOIN, ORDER BY of actual queries
Storing computed values without a refresh strategyStale data, silent bugsDefine update triggers, events, or batch jobs alongside any denormalization
Using ENUM types for values that changeSchema migration for every new valueUse a lookup table with a foreign key instead
Storing money as floating-pointRounding errorsUse DECIMAL/NUMERIC or store as integer cents
Missing created_at / updated_at timestampsNo auditability, difficult debuggingAdd timestamp columns to every table by default
Generic type + type_id polymorphism everywhereNo referential integrity, complex queriesEvaluate STI, CTI, or separate tables first

Reference Files

ReferenceContents
Modeling PatternsPolymorphic associations (STI/CTI/TPT), soft deletes, audit trails, temporal data, self-referential trees, JSON columns
Indexing StrategiesB-tree/hash/GiST/GIN details, composite index design, covering and partial indexes, EXPLAIN analysis, anti-patterns
Migration PatternsVersion-based vs state-based migrations, expand-contract, data migrations, rollback strategies, multi-tool examples

Integration with Other Skills

SituationRecommended Skill
Optimizing query performance and cachingInstall knowledge-virtuoso from krzysztofsurdy/code-virtuoso for performance optimization patterns
Designing domain models and aggregatesInstall knowledge-virtuoso from krzysztofsurdy/code-virtuoso for clean architecture and DDD guidance
Building APIs that expose database-backed resourcesInstall knowledge-virtuoso from krzysztofsurdy/code-virtuoso for API design principles
Testing database interactionsInstall knowledge-virtuoso from krzysztofsurdy/code-virtuoso for testing strategies

What ships with it: 3 files

24.4 KB alongside SKILL.md

Gives 0 of the 12 instructions most performance cost skills give in ~2.4k tokens

Counted across 797 of the 1,117 authors here whose files we hold, read 2026-09-06

  • Check for product marketing context firstin 46 of 797, across 20 files
  • Measure before optimizingin 31 of 797, across 25 files
  • Profile first to identify the actual bottleneckin 23 of 797, across 22 files
  • Verify your robots.txt allows AI crawlersin 21 of 797, across 12 files
  • Import directly and avoid barrel filesin 19 of 797, across 15 files
  • Spawn all runs in the same turnin 18 of 797, across 11 files
  • Write a draft of the skillin 17 of 797, across 10 files
  • Understand the user's intentin 17 of 797, across 10 files
  • Use React.cache for per-request deduplicationin 16 of 797, across 11 files
  • Profile before optimizingin 16 of 797, across 14 files
  • Include specific numbers with sourcesin 15 of 797, across 8 files
  • Add lazy loading to below-fold imagesin 15 of 797, across 10 files

Said here and by no other author read

  • Design tables around read and write access patterns
  • Keep the normalized source of truth when denormalizing
  • Define update strategies for denormalized copies
  • Monitor for drift between source and copy
  • Document why denormalization exists
  • Use the expand-contract pattern for breaking changes

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.