Files
igm 01f1e1c9e3 Add READMEs for remaining packages
- db-schema: Database schema types from kysely-codegen
- db: Database client and helper functions
- testing: Overview of testing packages
- test-helpers: Database testing utilities
- virtual-authenticator: WebAuthn virtual authenticator

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-12 13:59:34 +08:00

25 lines
541 B
Markdown

# @reviq/db-schema
Database schema types generated from PostgreSQL using kysely-codegen.
## Usage
```typescript
import type { Database } from "@reviq/db-schema";
```
## Regenerating Types
When the database schema changes, regenerate the types:
```bash
bun run --cwd packages/db-schema generate
```
This requires `DATABASE_URL` to be set and pointing to a database with the current schema.
## Exports
- `Database` - The full database type for use with Kysely
- Table types for all database tables (e.g., `Users`, `Orgs`, `Sessions`)