From antigravity-awesome-skills
Designs database schemas with normalization and relationships, selects databases (PostgreSQL, Neon, Turso, SQLite) and ORMs (Drizzle, Prisma, Kysely), plans indexing and migrations.
npx claudepluginhub sickn33/antigravity-awesome-skillsThis skill uses the workspace's default tool permissions.
> **Learn to THINK, not copy SQL patterns.**
Designs database schemas with normalization and relationships, selects databases (PostgreSQL, Neon, Turso, SQLite) and ORMs (Drizzle, Prisma, Kysely), plans indexing and migrations.
Designs schemas, indexes, query optimizations, and migrations for SQL/NoSQL databases. For table design, N+1 fixes, normalization, ORMs, performance tuning.
Designs relational and NoSQL database schemas with patterns for normalization/denormalization, entity relationships, indexing, migrations, audit trails, partitioning, and access pattern optimization.
Share bugs, ideas, or general feedback.
Learn to THINK, not copy SQL patterns.
Read ONLY files relevant to the request! Check the content map, find what you need.
| File | Description | When to Read |
|---|---|---|
database-selection.md | PostgreSQL vs Neon vs Turso vs SQLite | Choosing database |
orm-selection.md | Drizzle vs Prisma vs Kysely | Choosing ORM |
schema-design.md | Normalization, PKs, relationships | Designing schema |
indexing.md | Index types, composite indexes | Performance tuning |
optimization.md | N+1, EXPLAIN ANALYZE | Query optimization |
migrations.md | Safe migrations, serverless DBs | Schema changes |
Before designing schema:
โ Default to PostgreSQL for simple apps (SQLite may suffice) โ Skip indexing โ Use SELECT * in production โ Store JSON when structured data is better โ Ignore N+1 queries
This skill is applicable to execute the workflow or actions described in the overview.