
Schema
The schema for Drizzle is found insrc/core/db/schema.ts. This file contains the schema for the database tables and their relationships.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.

src/core/db/schema.ts. This file contains the schema for the database tables and their relationships.
import { db } from '~/core/db';
const user = await db.query.user.findFirst({
where: (table, { eq }) => eq(table.id, userId),
});