- Which SQL dialects?
- CREATE TABLE from PostgreSQL, MySQL, SQLite. The tool extracts columns, types, constraints, and generates Prisma models.
- Does it detect relationships?
- Foreign keys are mapped to Prisma relations. Many-to-many joins (with explicit junction tables) are recognized and mapped appropriately.
- What about enums?
- Postgres ENUM types become Prisma enums. MySQL CHECK-constraint enums need manual review — Prisma prefers explicit enum definitions.
- Will the Prisma schema round-trip?
- Run `prisma migrate diff` to compare. Minor drift is likely (defaults, indexes). Use this as a starter; hand-tune the Prisma schema for production.