Simulacrum

Prisma

Prisma schema, migrations, Studio, and MySQL or Postgres targets in Simulacrum outputs.

Schema and client

Generated projects include schema.prisma and a generated client. Run:

bash
npx prisma migrate dev
npx prisma generate

MySQL support

When you select MySQL, the datasource block uses the mysql provider. Validate connection limits and SSL modes for your host (PlanetScale, RDS, and so on).

Studio

bash
npx prisma studio

Use Studio for local data inspection; avoid exposing it publicly.

Switching from Drizzle to Prisma (or reverse) is supported at generation time; plan a data migration if you change mid-flight on a live app.