drizzle-orm

Installation
SKILL.md

Drizzle ORM

Setup

bun add drizzle-orm
bun add -D drizzle-kit
# driver (pick one):
bun add @neondatabase/serverless  # Neon PostgreSQL
bun add postgres                   # node-postgres
bun add better-sqlite3             # SQLite

Schema Definition

// db/schema.ts
import { pgTable, serial, varchar, integer, timestamp, boolean } from 'drizzle-orm/pg-core'
import { relations } from 'drizzle-orm'
Installs
2
GitHub Stars
4
First Seen
Jun 15, 2026
drizzle-orm — heldinhow/awesome-opencode-dev-skills