db-schema

A set of rules for designing database tables and changing their structure. It covers names, IDs, links between tables, indexes, required values, and safe migrations, which are controlled changes to a database.

In plain words
What is it for?
Use it when creating tables, writing migrations, or reviewing an existing database schema.
Why use it?
It helps prevent invalid data, conflicting updates, and database changes that are difficult or unsafe to undo.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/sordi-ai/skill-everything/db-schema
Clone the repo
git clone --depth 1 https://github.com/sordi-ai/skill-everything

Made for: Cursor.

Per session 30 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,038 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00030 $0.01038
Opus 5 $0.00015 $0.00519
Sonnet 5 $0.00006 $0.00208
Haiku 4.5 $0.00003 $0.00104

Measured 3d ago against content hash 29c7493f026c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

db-schema scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/db-schema.mdc · 70 lines

How it starts

The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Sub-Skill: Database Schema Design

Purpose: Prevent data-integrity bugs, race conditions, and irreversible migrations by enforcing database-level constraints and safe migration patterns before code reaches production.


Rules

Naming Conventions

  1. Snake case everywhere. Always use snake_case for table names, column names, and index names; never use camelCase or PascalCase in SQL identifiers.
  2. Plural table names. Always name tables in the plural (users, orders, line_items); singular names cause inconsistency across ORMs and query builders.
  3. Consistent FK column naming. Always name foreign-key columns <referenced_table_singular>_id (e.g., user_id, order_id) so the reference is self-documenting.

Primary Keys

  1. Surrogate primary key. Always define an explicit surrogate primary key (id) on every table; never rely on natural keys as the sole PK unless the domain guarantees immutability.
  2. UUID vs serial. Prefer uuid PKs for distributed systems or public-facing IDs; prefer bigserial / bigint GENERATED ALWAYS AS IDENTITY for high-insert internal tables where sort order matters.

Foreign Keys & Referential Integrity

  1. Declare FK constraints. Always declare FOREIGN KEY constraints in the schema; never rely on application-layer join logic to enforce referential integrity.
  2. Explicit ON DELETE behaviour. Always specify ON DELETE behaviour (CASCADE, SET NULL, or RESTRICT) on every FK; omitting it defaults to RESTRICT, which can cause surprising errors at runtime.
  3. Missing FK is a data-integrity bug. Never ship a column that references another table without a corresponding FK constraint — orphaned rows accumulate silently. Reference: ERR-2026-022

Indexes

  1. Index every FK column. Always add an index on every foreign-key column; unindexed FKs cause full-table scans on joins and cascade operations.
  2. Covering indexes for hot queries. Use covering indexes (include all columns in the SELECT) for read-heavy queries rather than adding redundant columns to the base table.
  3. Unique constraints at DB level. Always enforce uniqueness at the database level rather than relying on application-layer deduplication; race conditions between concurrent writes bypass app checks. Reference: ERR-2026-022

Read the full file on GitHub · 70 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 70 lines · 30 tokens per session scan A 29c7493f026c

Subscribe to this mod's changes

db-schema is a cursor rule published in the GitHub repository sordi-ai/skill-everything (19 stars, last pushed 3mo ago), licensed MIT. It adds 30 tokens to every session and 1,038 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.