Skip to content

Conversation

@nurul3101
Copy link
Member

@nurul3101 nurul3101 commented Nov 18, 2025

  • Fixes some import issues
  • Explicitly running npx prisma generate after migrate command as it is not run implicitly after Prisma 7.

Summary by CodeRabbit

Release Notes

  • Documentation
    • Updated multiple framework integration guides with clarified Prisma Client generation steps after database migrations.
    • Revised import paths in code examples for consistency across guides.
    • Restructured setup instructions to improve workflow clarity in several framework guides.
    • Updated database configuration examples for enhanced accuracy.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Nov 18, 2025

Walkthrough

This PR systematically updates Prisma-related documentation across 25+ guides to reflect a new generator output structure and workflow. Changes include adding explicit npx prisma generate commands after migrations and updating PrismaClient import paths to reference the new /client subdirectory path. Two guides—Shopify and Bun—undergo substantial restructuring with new adapter configurations and setup flows.

Changes

Cohort / File(s) Summary
Add Prisma generate step after migrations
content/800-guides/010-data-migration.mdx, 020-implementing-schema-changes.mdx, 160-tanstack-start.mdx, 170-react-router-7.mdx, 180-solid-start.mdx, 190-sveltekit.mdx, 320-permit-io-access-control.mdx, 330-github-actions.mdx, 340-ai-sdk-nextjs.mdx, 390-hono.mdx, 400-betterauth-astro.mdx, 400-deno-integration.mdx, 999-making-guides.mdx
Insert npx prisma generate command immediately following each npx prisma migrate dev invocation to ensure Prisma Client regeneration post-migration.
Update PrismaClient import paths
content/800-guides/080-turborepo.mdx, 130-docker.mdx, 300-supabase-accelerate.mdx, 310-neon-accelerate.mdx
Change PrismaClient import paths from ../generated/prisma to ../generated/prisma/client across package references.
Both generate step and import path updates
content/800-guides/090-nextjs.mdx, 190-data-dog.mdx, 200-clerk-nextjs.mdx, 220-astro.mdx, 230-betterauth-nextjs.mdx, 350-authjs-nextjs.mdx, 360-embed-studio-nextjs.mdx
Add explicit npx prisma generate commands and update all PrismaClient import paths to the new /client subdirectory structure.
Environment and multiple database configuration
content/800-guides/150-multiple-databases.mdx
Update DATABASE_URL examples from Prisma Data Platform format to PostgreSQL connection strings; update multiple PrismaClient import paths to reference client-specific paths.
Shopify guide restructure
content/800-guides/210-shopify.mdx
Migrate from SQLite to PostgreSQL database configuration; introduce PrismaPg adapter setup; add new public functions getNotes(productGid) and createNote(note) to models/notes.server.js; update Prisma Client initialization to use adapter pattern.
Bun guide restructure
content/800-guides/370-bun.mdx
Major reorganization of setup flow with new sections (4.x) consolidating "Generate Prisma Client and run migrations"; introduce new files (db.ts, prisma/seed.ts, prisma.config.ts) with adapter-based PrismaClient configuration and seed hooks.

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~60 minutes

Areas requiring extra attention:

  • 210-shopify.mdx — Verify PrismaPg adapter syntax is correct; confirm the new public functions (getNotes, createNote) align with expected Shopify data model; ensure environment variable transitions from SQLite to PostgreSQL are clearly documented and non-breaking.
  • 370-bun.mdx — Validate the new db.ts, prisma/seed.ts, and prisma.config.ts file structures and adapter configuration; confirm the defineConfig and seed hook patterns match Bun's expected setup; review the consolidated 4.x section for clarity and completeness.
  • Import path consistency — Spot-check 10–15 of the updated import statements across different guides to ensure the /client suffix is applied uniformly and no files were missed.
  • Migration command sequencing — Verify that all instances of the new npx prisma generate placement (immediately after npx prisma migrate dev) are correct and not duplicated in any guide.

Possibly related PRs

  • docs(): add v7 migration guide #7249 — Main PR updating Prisma client generation and import paths as part of Prisma v7 migration; overlaps on generated/client layout standardization.
  • feat: add bun guide #7092 — Directly related to Bun guide restructure (content/800-guides/370-bun.mdx); both PRs introduce db.ts, seed.ts, and prisma.config.ts patterns.
  • Update ORM docs #7260 — Updates import paths to generated client and adds explicit prisma generate steps across multiple guides in parallel with this PR's changes.

Pre-merge checks

✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the primary change across the changeset: explicitly adding npx prisma generate commands after npx prisma migrate dev in multiple guide files to address the behavioral change in Prisma 7.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

📜 Recent review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between a38e614 and c08bfa8.

📒 Files selected for processing (27)
  • content/800-guides/010-data-migration.mdx (2 hunks)
  • content/800-guides/020-implementing-schema-changes.mdx (3 hunks)
  • content/800-guides/080-turborepo.mdx (2 hunks)
  • content/800-guides/090-nextjs.mdx (2 hunks)
  • content/800-guides/130-docker.mdx (2 hunks)
  • content/800-guides/150-multiple-databases.mdx (5 hunks)
  • content/800-guides/160-tanstack-start.mdx (1 hunks)
  • content/800-guides/170-react-router-7.mdx (1 hunks)
  • content/800-guides/180-solid-start.mdx (1 hunks)
  • content/800-guides/190-data-dog.mdx (3 hunks)
  • content/800-guides/190-sveltekit.mdx (1 hunks)
  • content/800-guides/200-clerk-nextjs.mdx (2 hunks)
  • content/800-guides/210-shopify.mdx (2 hunks)
  • content/800-guides/220-astro.mdx (3 hunks)
  • content/800-guides/230-betterauth-nextjs.mdx (2 hunks)
  • content/800-guides/300-supabase-accelerate.mdx (1 hunks)
  • content/800-guides/310-neon-accelerate.mdx (1 hunks)
  • content/800-guides/320-permit-io-access-control.mdx (1 hunks)
  • content/800-guides/330-github-actions.mdx (1 hunks)
  • content/800-guides/340-ai-sdk-nextjs.mdx (1 hunks)
  • content/800-guides/350-authjs-nextjs.mdx (2 hunks)
  • content/800-guides/360-embed-studio-nextjs.mdx (2 hunks)
  • content/800-guides/370-bun.mdx (2 hunks)
  • content/800-guides/390-hono.mdx (1 hunks)
  • content/800-guides/400-betterauth-astro.mdx (1 hunks)
  • content/800-guides/400-deno-integration.mdx (1 hunks)
  • content/800-guides/999-making-guides.mdx (1 hunks)
🧰 Additional context used
🧠 Learnings (7)
📓 Common learnings
Learnt from: ankur-arch
Repo: prisma/docs PR: 7066
File: content/200-orm/200-prisma-client/700-debugging-and-troubleshooting/245-troubleshooting-binary-size-issues.mdx:8-22
Timestamp: 2025-08-11T09:40:55.237Z
Learning: When the queryCompiler preview feature is enabled in Prisma ORM (v6.7.0+), it does not require Rust engines for CLI tools like `prisma migrate` or `prisma db pull`. The previous understanding that CLI tools would still need Rust binaries even with queryCompiler enabled is incorrect.
📚 Learning: 2025-10-09T21:32:50.340Z
Learnt from: aidankmcalister
Repo: prisma/docs PR: 7167
File: content/900-ai/prompts/astro.mdx:84-84
Timestamp: 2025-10-09T21:32:50.340Z
Learning: The `npx prisma init` command supports the following flags: `--db` (shorthand for `--datasource-provider prisma+postgres`), `--output` (specifies output location for generated client), `--generator-provider` (defines the generator provider), `--datasource-provider`, `--url`, `--preview-feature`, and `--with-model`. These are documented valid CLI options for Prisma init command.

Applied to files:

  • content/800-guides/170-react-router-7.mdx
  • content/800-guides/180-solid-start.mdx
  • content/800-guides/400-deno-integration.mdx
  • content/800-guides/010-data-migration.mdx
  • content/800-guides/320-permit-io-access-control.mdx
  • content/800-guides/340-ai-sdk-nextjs.mdx
  • content/800-guides/150-multiple-databases.mdx
  • content/800-guides/210-shopify.mdx
  • content/800-guides/090-nextjs.mdx
  • content/800-guides/999-making-guides.mdx
  • content/800-guides/390-hono.mdx
  • content/800-guides/190-sveltekit.mdx
  • content/800-guides/330-github-actions.mdx
  • content/800-guides/200-clerk-nextjs.mdx
  • content/800-guides/160-tanstack-start.mdx
  • content/800-guides/400-betterauth-astro.mdx
  • content/800-guides/230-betterauth-nextjs.mdx
  • content/800-guides/020-implementing-schema-changes.mdx
  • content/800-guides/360-embed-studio-nextjs.mdx
  • content/800-guides/370-bun.mdx
  • content/800-guides/350-authjs-nextjs.mdx
  • content/800-guides/080-turborepo.mdx
  • content/800-guides/220-astro.mdx
  • content/800-guides/130-docker.mdx
  • content/800-guides/190-data-dog.mdx
📚 Learning: 2025-08-11T09:40:55.237Z
Learnt from: ankur-arch
Repo: prisma/docs PR: 7066
File: content/200-orm/200-prisma-client/700-debugging-and-troubleshooting/245-troubleshooting-binary-size-issues.mdx:8-22
Timestamp: 2025-08-11T09:40:55.237Z
Learning: When the queryCompiler preview feature is enabled in Prisma ORM (v6.7.0+), it does not require Rust engines for CLI tools like `prisma migrate` or `prisma db pull`. The previous understanding that CLI tools would still need Rust binaries even with queryCompiler enabled is incorrect.

Applied to files:

  • content/800-guides/170-react-router-7.mdx
  • content/800-guides/180-solid-start.mdx
  • content/800-guides/400-deno-integration.mdx
  • content/800-guides/320-permit-io-access-control.mdx
  • content/800-guides/340-ai-sdk-nextjs.mdx
  • content/800-guides/999-making-guides.mdx
  • content/800-guides/390-hono.mdx
  • content/800-guides/190-sveltekit.mdx
  • content/800-guides/200-clerk-nextjs.mdx
  • content/800-guides/160-tanstack-start.mdx
  • content/800-guides/400-betterauth-astro.mdx
  • content/800-guides/020-implementing-schema-changes.mdx
  • content/800-guides/300-supabase-accelerate.mdx
📚 Learning: 2025-10-08T16:23:00.388Z
Learnt from: aidankmcalister
Repo: prisma/docs PR: 7165
File: content/800-guides/550-test-guide.mdx:85-90
Timestamp: 2025-10-08T16:23:00.388Z
Learning: For .mdx files in the prisma/docs repository: All headings and titles should use sentence case (e.g., "Getting started with Prisma ORM", "Best practices for authentication"), not title case. Exception: Always preserve exact casing for product names including "Prisma Postgres", "Prisma", "Prisma ORM", and "Prisma Data Platform".

Applied to files:

  • content/800-guides/150-multiple-databases.mdx
  • content/800-guides/210-shopify.mdx
  • content/800-guides/090-nextjs.mdx
  • content/800-guides/190-data-dog.mdx
📚 Learning: 2025-10-08T16:23:00.388Z
Learnt from: aidankmcalister
Repo: prisma/docs PR: 7165
File: content/800-guides/550-test-guide.mdx:85-90
Timestamp: 2025-10-08T16:23:00.388Z
Learning: For .mdx files in the prisma/docs repository: Only flag code snippets for (1) exposed secrets with real-looking values that should be placeholders (e.g., API keys, database passwords, AWS credentials), or (2) blatant syntax errors like missing parentheses, brackets, braces, or mismatched delimiters. Do not flag code quality issues, anti-patterns, security vulnerabilities, missing error handling, unused variables, or any other bad practices, as documentation intentionally shows problematic code.

Applied to files:

  • content/800-guides/150-multiple-databases.mdx
  • content/800-guides/210-shopify.mdx
  • content/800-guides/190-data-dog.mdx
📚 Learning: 2025-10-08T16:22:57.129Z
Learnt from: aidankmcalister
Repo: prisma/docs PR: 7165
File: content/800-guides/550-test-guide.mdx:50-66
Timestamp: 2025-10-08T16:22:57.129Z
Learning: In `.mdx` files, do NOT flag or suggest changes for the following code quality issues even if they represent poor practices: React anti-patterns (using var instead of useState, direct DOM manipulation), missing keys in .map() iterations, non-serializable props in getServerSideProps, unused variables, missing error handling, SQL injection vulnerabilities (unless actively showing how to fix them), insecure cookie settings, missing TypeScript types, PrismaClient instantiation patterns, or any other code quality, security, or performance issues. Documentation code snippets are copied from source code and often intentionally show "before" examples or common mistakes.

Applied to files:

  • content/800-guides/210-shopify.mdx
  • content/800-guides/090-nextjs.mdx
  • content/800-guides/230-betterauth-nextjs.mdx
  • content/800-guides/020-implementing-schema-changes.mdx
  • content/800-guides/360-embed-studio-nextjs.mdx
  • content/800-guides/300-supabase-accelerate.mdx
  • content/800-guides/190-data-dog.mdx
📚 Learning: 2025-10-15T06:36:42.423Z
Learnt from: jy-joung-bitor
Repo: prisma/docs PR: 0
File: :0-0
Timestamp: 2025-10-15T06:36:42.423Z
Learning: The `tsc --init` command requires the `--types node` flag to properly include Node.js type definitions from `types/node` in the generated tsconfig.json, even when types/node is already installed. Without this flag, TypeScript may not automatically pick up Node.js typings.

Applied to files:

  • content/800-guides/190-data-dog.mdx
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: Check internal links
  • GitHub Check: Cloudflare Pages
🔇 Additional comments (43)
content/800-guides/220-astro.mdx (4)

46-50: Clear navigation instruction added.

The explicit directory navigation step after project creation is helpful and follows documentation best practices.


140-153: Excellent: Prisma 7 workflow correctly reflected with explicit generate step.

Splitting the migration and generation into two distinct steps with clear labeling addresses the core Prisma 7 behavior change where prisma generate is no longer implicit. The sequencing—migrate first, then generate—is correct, and the user guidance makes the workflow intent transparent.


161-161: Import paths consistently updated across file.

The removal of the .js extension aligns with modern Node.js/TypeScript import conventions and the updated Prisma generator output structure. This change is consistent with the imports at lines 286 and 343, which also use the extensionless format. The relative paths correctly resolve from their respective file locations to the generator output.


381-403: Well-structured guide closure with practical next steps.

The new "Run your app" section (3.5) and the summary with next steps provide clear guidance for users to verify their setup works and suggests relevant extensions using Prisma Postgres features.

content/800-guides/340-ai-sdk-nextjs.mdx (1)

149-150: ✓ Prisma 7 workflow correctly updated—generate step appropriately sequenced after migration.

The addition of npx prisma generate on line 150 correctly reflects Prisma 7 behavior where the client is no longer generated implicitly after migrations. The command placement is logical and consistent with the pattern across other guides in this PR.

content/800-guides/400-betterauth-astro.mdx (1)

287-288: ✓ Generate step correctly placed in auth model setup workflow.

The explicit npx prisma generate on line 288 ensures the Prisma Client is regenerated after the Better Auth models are added to the schema. This sequencing aligns with Prisma 7's explicit generation requirement and prevents potential client stale-ness issues when subsequent code attempts to use the new auth-related types.

content/800-guides/400-deno-integration.mdx (1)

158-159: ✓ Deno runtime command variant correctly implemented for Prisma 7 workflow.

The addition of deno run -A npm:prisma generate on line 159 appropriately adapts the Prisma 7 generate requirement to Deno's runtime. The command syntax is consistent with the migration command on line 158, using the same prefix pattern and permission grants. This ensures Deno Deploy users have parity with Node.js-based guides regarding the explicit client generation step.

content/800-guides/999-making-guides.mdx (1)

388-389: ✓ Guide template updated to reflect Prisma 7 best practices.

The addition of npx prisma generate in the template is particularly valuable as it establishes the expected pattern for future guide authors. This ensures that new community guides will automatically incorporate the explicit generate step required by Prisma 7, preventing documentation drift and maintaining consistency across the entire guide suite.

content/800-guides/180-solid-start.mdx (1)

159-160: ✓ Prisma 7 workflow correctly applied to SolidStart guide.

The explicit npx prisma generate command on line 160 appropriately follows the migration step, maintaining consistency across the guide suite regardless of the underlying framework. This ensures SolidStart developers aren't caught off-guard by Prisma 7's changed behavior around implicit client generation.

content/800-guides/320-permit-io-access-control.mdx (1)

231-232: ✓ Generate step correctly positioned in complex authorization workflow.

Given this guide's complexity involving Permit.io extensions and seeding logic, the explicit npx prisma generate on line 232 is especially important. It ensures the Prisma Client is fully regenerated with all schema changes before subsequent code—such as the seed script and Permit client extensions—depends on those generated types. This prevents type mismatches and runtime errors downstream.

content/800-guides/190-sveltekit.mdx (1)

152-153: ✓ SvelteKit guide correctly updated for Prisma 7 workflow.

The addition of npx prisma generate on line 153 properly reflects Prisma 7's requirement for explicit client generation. This is a straightforward and necessary update for SvelteKit developers, ensuring their guide matches the current toolchain behavior.

content/800-guides/170-react-router-7.mdx (1)

138-139: ✓ React Router 7 guide correctly implements Prisma 7 workflow.

The explicit npx prisma generate on line 139 appropriately follows the migration command. This update ensures React Router 7 developers using the guide will have their Prisma Client properly regenerated, preventing potential issues where the client types don't match the migrated schema.

content/800-guides/300-supabase-accelerate.mdx (1)

172-172: Import path updated to reflect Prisma 7 client structure.

The path now correctly points to the generated client subdirectory. This ensures the example stays current with the new generator output structure in Prisma 7.

content/800-guides/160-tanstack-start.mdx (1)

399-401: Explicit prisma generate step added post-migration.

This ensures the Prisma Client is regenerated after schema changes, which is required in Prisma 7 since the command is no longer implicit after migrate dev.

content/800-guides/230-betterauth-nextjs.mdx (2)

136-136: Import path updated to new client subdirectory structure.

The path now reflects Prisma 7's generator output structure, ensuring the example imports from the correct location.


337-337: Explicit prisma generate added after migration.

The generate command is now explicitly called after adding the Better Auth models, ensuring the Prisma Client is updated with the new schema.

content/800-guides/390-hono.mdx (1)

126-128: Explicit prisma generate command added post-migration.

The Prisma Client will now be regenerated after creating the initial migration, which is necessary in Prisma 7.

content/800-guides/020-implementing-schema-changes.mdx (3)

171-173: Explicit prisma generate added after Developer A's migration.

The generate command ensures the Prisma Client reflects schema changes, which is required in Prisma 7.


189-191: Explicit prisma generate added after Developer B's migration.

This ensures Javier's new model is included in the generated Prisma Client.


228-230: Explicit prisma generate added after team integration.

The generate command is now part of the team workflow, ensuring all changes are reflected in the generated client.

content/800-guides/010-data-migration.mdx (2)

140-144: Explicit generate command block added after schema expansion.

The new "Then generate Prisma Client" section clearly indicates that client regeneration is required after adding the status field, supporting the Prisma 7 workflow.


246-250: Explicit generate command block added after schema contraction.

The generate command ensures the client is updated after removing the published column, completing the expand-and-contract pattern with proper client regeneration.

content/800-guides/310-neon-accelerate.mdx (1)

172-172: Import path updated to reflect Prisma 7 client structure.

The path now correctly references the generated client subdirectory, keeping this Accelerate example aligned with the new generator output.

content/800-guides/350-authjs-nextjs.mdx (2)

206-206: Import path updated to new client subdirectory.

The path now points to the generated Prisma client correctly for Prisma 7, ensuring the Auth.js example stays current.


196-197: Explicit prisma generate added after initial migration.

The generate command now runs after migrate dev --name init, ensuring the Prisma Client is created to support the subsequent authentication setup steps.

content/800-guides/200-clerk-nextjs.mdx (1)

316-316: Correctly adds explicit Prisma Client generation and updates import path.

The addition of npx prisma generate after migrations aligns with Prisma 7's behavior where client generation is no longer implicit. The import path update from ../app/generated/prisma to ../app/generated/prisma/client correctly reflects the new client subdirectory structure.

Also applies to: 331-331

content/800-guides/330-github-actions.mdx (2)

136-142: Clear documentation of explicit Prisma Client generation step.

The new section appropriately explains why npx prisma generate is necessary after migrations in Prisma 7, providing helpful context for readers following the guide.


417-417: Consistent Prisma Client generation in workflow steps.

Both the database setup and seeding steps include npx prisma generate to ensure the client is available, which is appropriate for a CI/CD workflow where the container may be freshly built.

Also applies to: 435-435

content/800-guides/190-data-dog.mdx (1)

258-258: Import path correctly updated to reference client subdirectory.

The change from "./generated/prisma" to "./generated/prisma/client" aligns with Prisma's generator output structure and is consistent with updates across other guides in this PR.

content/800-guides/080-turborepo.mdx (1)

367-367: Consistent import and re-export path updates for monorepo client structure.

Both the direct import and re-export have been updated to reference the /client subdirectory, maintaining consistency for the centralized database package that other apps depend on.

Also applies to: 388-388

content/800-guides/360-embed-studio-nextjs.mdx (1)

178-178: Properly implements Prisma 7 client generation and import path pattern.

The addition of explicit npx prisma generate after migration and the updated import to ../app/generated/prisma/client correctly reflect Prisma 7's changes and are consistent with the broader guide updates in this PR.

Also applies to: 188-188

content/800-guides/130-docker.mdx (3)

174-174: Import path correctly targets client subdirectory within custom output directory.

The import path ./generated/prisma_client/client correctly matches the generator output path ../generated/prisma_client defined in the schema, accounting for the file's relative location.


289-293: Explicit Prisma Client generation properly added to Docker migration workflow.

The npx prisma generate step is correctly inserted after migration, ensuring the client is available before the application runs in the container.


214-214: Package.json deployment script correctly includes Prisma Client generation.

The db:deploy script now runs both prisma migrate deploy and prisma generate, ensuring migrations and client generation occur as expected in production deployments.

content/800-guides/090-nextjs.mdx (2)

154-154: Clear section header and explicit Prisma generation step for improved workflow clarity.

The updated section title "Run migrations and generate Prisma Client" clearly communicates the required steps, and the explicit generation command with explanatory text helps guide readers through Prisma 7's new workflow.

Also applies to: 159-166


175-175: Consistent import path updates across seed and client files.

Both the seed script and Prisma Client instantiation file have been updated to import from the /client subdirectory, maintaining consistency and correctness across the application.

Also applies to: 295-295

content/800-guides/150-multiple-databases.mdx (1)

290-290: Import paths correctly updated for multiple database client structure.

Both user and post database clients have been updated to import from the /client subdirectory, maintaining the established pattern across guides and ensuring the code references the correct generator output location.

Also applies to: 319-319

content/800-guides/210-shopify.mdx (3)

178-184: Key change correctly implemented: explicit npx prisma generate step.

The explicit npx prisma generate command after migrations is now properly documented (lines 181–184), which aligns with the PR objective since Prisma 7 no longer runs this implicitly.


188-193: Verify ESM import syntax compatibility with Remix.

The import statement on line 193 uses a .js extension (./generated/prisma/client.js), which is ESM syntax. Confirm this is the correct approach for Remix + TypeScript environments. Note: The companion Bun guide (content/800-guides/370-bun.mdx, line 141) imports the same generated client without the .js extension—this inconsistency should be resolved for clarity across guides.


146-154: Approved: Dependency updates and database provider flexibility.

The addition of @prisma/adapter-pg and pg packages (lines 146–147) is correct, and the info box (lines 150–154) properly documents the flexibility to use alternative database adapters for other providers.

content/800-guides/370-bun.mdx (3)

120-127: Key change correctly implemented: explicit npx prisma generate step.

The explicit generation step (line 126: bunx --bun prisma generate) is now properly shown after the migration command. This correctly reflects Prisma 7 behavior where generate is not run implicitly with migrate dev.


141-141: Verify import path consistency across guides.

The import path on line 141 (./generated/prisma/client) lacks the .js extension, whereas the Shopify guide (content/800-guides/210-shopify.mdx, line 193) uses ./generated/prisma/client.js. Clarify whether:

  • The .js extension is required for ESM in specific environments (Remix vs Bun)
  • One guide should match the other for consistency

Both files define the same output path in their schemas (e.g., output = "../generated/prisma" in Bun), so the import syntax should ideally align.

Also applies to: 158-158


45-46: Approved: Adapter and provider configuration.

The dependency installation (lines 45–46) and schema generator/datasource updates (lines 102–104) properly reflect the new Prisma 7 structure with the PrismaPg adapter and updated generator provider.

Also applies to: 102-104


Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link
Contributor

Dangerous URL check

No absolute URLs to prisma.io/docs found.
No local URLs found.

@github-actions
Copy link
Contributor

Redirect check

This PR probably requires the following redirects to be added to static/_redirects:

  • This PR does not change any pages in a way that would require a redirect.

@github-actions
Copy link
Contributor

🍈 Lychee Link Check Report

Note: Links are cached for 5 minutes. Failed links (timeouts, rate limits) are retried in a second run with longer timeout.

📊 Results Overview

Status Count
🔍 Total 2236
✅ Successful 2206
⏳ Timeouts 0
🔀 Redirected 5
👻 Excluded 23
❓ Unknown 0
🚫 Errors 1
⛔ Unsupported 1

Errors per input

Errors in 200-orm/800-more/300-upgrade-guides/200-upgrading-versions/400-upgrading-to-prisma-7.mdx

  • [ERROR] file:///home/runner/work/docs/docs/content/200-orm/800-more/300-upgrade-guides/200-upgrading-versions/orm/prisma-client/client-extensions | Cannot find file: File not found. Check if file exists and path is correct

@cloudflare-workers-and-pages
Copy link

Deploying docs with  Cloudflare Pages  Cloudflare Pages

Latest commit: c08bfa8
Status:🚫  Build failed.

View logs

@nurul3101 nurul3101 merged commit 349b7ea into prisma-7 Nov 18, 2025
3 of 6 checks passed
@nurul3101 nurul3101 deleted the feat/guide-updates branch November 18, 2025 15:30
aidankmcalister pushed a commit that referenced this pull request Nov 18, 2025
@coderabbitai coderabbitai bot mentioned this pull request Nov 18, 2025
mhessdev pushed a commit that referenced this pull request Nov 19, 2025
* DC-5044 `prisma-client-js` deprecated (#7219)

* `prisma-client-js` deprecated

* chore: empty commit

* broken link updated

* DC-5040 Env Vars via Config (#7227)

* added env vars section to various pages

* minor coderabbit updates

* verbose removed

* test removed redirect list

* removed quickstart addition

* converted quickstarts back

* urls deprecated (#7226)

* minimum version uodated (#7234)

* DC-5043 Middleware removed from docs (#7233)

* middleware deleted

* more middleware removed

* more middleware removed

* coderabbit changes

* DC-6174: Remove adapter, engine, directUrl, studio from config (#7256)

* feat: add new features

* fix: revert links

* fix: broken links

* fix: broken link

* feat: restructure getting started side nav (#7245)

* feat(docs): add youtube embeded link to blog post (#7220)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* feat(docs): add quick  section to blog after the prompt (#7221)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* DC-5242 Astro Better-Auth Guide (#7215)

* doc created

* nextjs betterauth fixed

* guide broken down into manageable steps

* image added

* Optimised images with calibre/image-actions

* image updated

* Optimised images with calibre/image-actions

* lychee only comments on broken links

* config updated

* lychee updated based on CR comment

* chore: trigger CI checks

* ignore gnu

* fix: update naming to better-auth DC-6120

* Optimised images with calibre/image-actions

* chore: shorten word

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>

* feat: restructure getting started side nav

* DC-5841 Removed Linkspector (#7231)

* removed linkspector

* retrigger

* retrigger

* retrigger

* Update label for Prisma Postgres tab (#7236)

* fix: content changes for getting started page (#7216)

* fix: content changes for getting started page

* fix: add redirects

* getting started checkpoint

* css styles fixed

* updates

---------

Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>

* DC-5820 AI Agents Served Markdown (#7237)

* ai crawler check successful

* ai crawlers checked

* update

* added anthropic

* middleware update

* improve detection

---------

Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* feat: add prisma-orm quickstarts

* fix: update times and add proper links

* fix: instropspect changes

* feat: add get started from prisma orm page

* feat: add other orms

* fix: update other tools + ppg

* fix: add more clarity

* fix: add prisma postgres

* feat: clear migrate from early access

* fix: add to existing dbs sections

* Remove MCP server exploration tip (#7241)

Removed tip about using Cloudflare's AI Playground for MCP server exploration, as it no longer seems to reliably work.

* fix: clean-up docs files

* fix: typeorm missing urls

* fix: broken link

* fix: update titles

* fix: clear redirect loop (#7250)

* fix: add generate step + sqlite fixes

* fix: clean-up redirects file DC-6228

* fix: clean-up unnecessary file

* fix: remove unknown word

* fix: add links

---------

Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* feat: update .env docs DC-6204 (#7259)

* fix: clarify config file path better (#7261)

* Update ORM docs (#7260)

* update

* use pg adapter instead of accelerate

* update

* add dotenv in prisma.config.ts

* fix warning note

* update

* update

* Update guides to use prisma.config.ts (#7243)

* (feat) Update guides to use prisma.config.ts

* refactor: Updated guides for Prisma 7 changes

---------

Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>

* feat: update ppg for other dbs section (#7264)

* feat: add kysley

* feat: add drizzle

* feat: add typeorm

* fix: clean-up

* feat: separate the sections better

* fix: remove badges

* feat: update prisma init related changes in other parts (#7267)

* feat: add kysley

* feat: add drizzle

* feat: add typeorm

* fix: clean-up

* fix: update prisma init command changes

* feat: update prisma cli docs

* fix: clarify the usage of prisma init better

* fix: add type defs

* feat: add pg as a dependency

* fix: broken internal link

* Update docs to perform migrations with connection pooling and Prisma config (#7266)

* feat: add mentions of new Prisma Studio (#7270)

* feat: add mentions of new Prisma Studio

* feat: add note for Studio for SQLite

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

* Update content/100-getting-started/02-prisma-orm/200-add-to-existing-project/200-sqlite.mdx

* fix: make prisma studio docs more accurate

* fix: add missing punctuation

* feat: add mention of mongo support coming for P7 (#7271)

* feat: add mention of mongo support coming for mongo

* fix: refinements

* Update content/100-getting-started/02-prisma-orm/200-add-to-existing-project/800-mongodb.mdx

* (feat) Removes Accelerate specific instructions for Prisma Postgres (#7268)

* (feat) Removes Accelerate specific instructions for Prisma Postgres

* feat: update Deno integration guide to include additional development dependencies

* Update Cloudflare D1 Guides (#7273)

* feat: update serverless driver docs (#7272)

* feat: update serverless driver docs

* feat: add connection pool defaults

* feat: add query caching steps for prisma postgres

* Update content/200-orm/200-prisma-client/000-setup-and-configuration/050-databases-connections/115-connection-pool.mdx

* Update content/200-orm/200-prisma-client/000-setup-and-configuration/050-databases-connections/index.mdx

* Update content/200-orm/050-overview/500-databases/200-database-drivers.mdx

* Update content/200-orm/200-prisma-client/000-setup-and-configuration/050-databases-connections/115-connection-pool.mdx

* docs(): add v7 migration guide (#7249)

* docs(): add v7 migration guide

* docs(): update based on feedback

* Update content/200-orm/800-more/300-upgrade-guides/200-upgrading-versions/400-upgrading-to-prisma-7.mdx

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* docs(): update based on feedback

* docs(): update based on feedback

* docs(): update based on feedback

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* update turso guide (#7274)

* (feat) Explicitly running prisma generate after migrate dev command and import updates (#7276)

* Update nuxt guides (#7275)

* update nuxt guide

* update

* broken link fix

* broken link fixed

* fix: add SQLite notes (#7277)

* fix: add SQLite notes

* fix: update serverless driver doc

* feat: add callout

* Prisma 7 merge fix (#7278)

* feat(docs): add youtube embeded link to blog post (#7220)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* feat(docs): add quick  section to blog after the prompt (#7221)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* DC-5242 Astro Better-Auth Guide (#7215)

* doc created

* nextjs betterauth fixed

* guide broken down into manageable steps

* image added

* Optimised images with calibre/image-actions

* image updated

* Optimised images with calibre/image-actions

* lychee only comments on broken links

* config updated

* lychee updated based on CR comment

* chore: trigger CI checks

* ignore gnu

* fix: update naming to better-auth DC-6120

* Optimised images with calibre/image-actions

* chore: shorten word

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>

* DC-5841 Removed Linkspector (#7231)

* removed linkspector

* retrigger

* retrigger

* retrigger

* Update label for Prisma Postgres tab (#7236)

* fix: content changes for getting started page (#7216)

* fix: content changes for getting started page

* fix: add redirects

* getting started checkpoint

* css styles fixed

* updates

---------

Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>

* DC-5820 AI Agents Served Markdown (#7237)

* ai crawler check successful

* ai crawlers checked

* update

* added anthropic

* middleware update

* improve detection

---------

Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* Remove MCP server exploration tip (#7241)

Removed tip about using Cloudflare's AI Playground for MCP server exploration, as it no longer seems to reliably work.

* fix: clear redirect loop (#7250)

* Fix typo in environment variables reference (#7193)

* Fix typo in environment variables reference

* remove duplicate can be

---------

Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>

* chore(): add summary sections to top pages (#7228)

* DC-6234 Getting Started Page Updates (#7254)

* arrow added

* quickstart card hover

* always copy button added

* hover effect on copy button

* spcaer added

* pointless css removed

* updaets

* fuctional

* revewrt

* fixed for mobile

* link fix

---------

Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Mike Hartington <mikehartington@gmail.com>
Co-authored-by: Odysseus Zhang <b1fzhang@gmail.com>
Co-authored-by: Mike Hartington <mhartington@users.noreply.github.com>

* spell check words added

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

* `pgcrypto` added to spellcheck

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>

* docs(): add note about vscode version pinning (#7279)

* docs(): add note about vscode version pinning

* Optimised images with calibre/image-actions

* Update content/250-postgres/350-integrations/500-vscode.mdx

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* docs(postgres): remove accelerate reference (#7246)

* DC-5044 `prisma-client-js` deprecated (#7219)

* `prisma-client-js` deprecated

* chore: empty commit

* broken link updated

* DC-5040 Env Vars via Config (#7227)

* added env vars section to various pages

* minor coderabbit updates

* verbose removed

* test removed redirect list

* removed quickstart addition

* converted quickstarts back

* urls deprecated (#7226)

* minimum version uodated (#7234)

* DC-5043 Middleware removed from docs (#7233)

* middleware deleted

* more middleware removed

* more middleware removed

* coderabbit changes

* DC-6174: Remove adapter, engine, directUrl, studio from config (#7256)

* feat: add new features

* fix: revert links

* fix: broken links

* fix: broken link

* feat: restructure getting started side nav (#7245)

* feat(docs): add youtube embeded link to blog post (#7220)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* feat(docs): add quick  section to blog after the prompt (#7221)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* DC-5242 Astro Better-Auth Guide (#7215)

* doc created

* nextjs betterauth fixed

* guide broken down into manageable steps

* image added

* Optimised images with calibre/image-actions

* image updated

* Optimised images with calibre/image-actions

* lychee only comments on broken links

* config updated

* lychee updated based on CR comment

* chore: trigger CI checks

* ignore gnu

* fix: update naming to better-auth DC-6120

* Optimised images with calibre/image-actions

* chore: shorten word

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>

* feat: restructure getting started side nav

* DC-5841 Removed Linkspector (#7231)

* removed linkspector

* retrigger

* retrigger

* retrigger

* Update label for Prisma Postgres tab (#7236)

* fix: content changes for getting started page (#7216)

* fix: content changes for getting started page

* fix: add redirects

* getting started checkpoint

* css styles fixed

* updates

---------

Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>

* DC-5820 AI Agents Served Markdown (#7237)

* ai crawler check successful

* ai crawlers checked

* update

* added anthropic

* middleware update

* improve detection

---------

Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* feat: add prisma-orm quickstarts

* fix: update times and add proper links

* fix: instropspect changes

* feat: add get started from prisma orm page

* feat: add other orms

* fix: update other tools + ppg

* fix: add more clarity

* fix: add prisma postgres

* feat: clear migrate from early access

* fix: add to existing dbs sections

* Remove MCP server exploration tip (#7241)

Removed tip about using Cloudflare's AI Playground for MCP server exploration, as it no longer seems to reliably work.

* fix: clean-up docs files

* fix: typeorm missing urls

* fix: broken link

* fix: update titles

* fix: clear redirect loop (#7250)

* fix: add generate step + sqlite fixes

* fix: clean-up redirects file DC-6228

* fix: clean-up unnecessary file

* fix: remove unknown word

* fix: add links

---------

Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* feat: update .env docs DC-6204 (#7259)

* fix: clarify config file path better (#7261)

* Update ORM docs (#7260)

* update

* use pg adapter instead of accelerate

* update

* add dotenv in prisma.config.ts

* fix warning note

* update

* update

* Update guides to use prisma.config.ts (#7243)

* (feat) Update guides to use prisma.config.ts

* refactor: Updated guides for Prisma 7 changes

---------

Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>

* feat: update ppg for other dbs section (#7264)

* feat: add kysley

* feat: add drizzle

* feat: add typeorm

* fix: clean-up

* feat: separate the sections better

* fix: remove badges

* feat: update prisma init related changes in other parts (#7267)

* feat: add kysley

* feat: add drizzle

* feat: add typeorm

* fix: clean-up

* fix: update prisma init command changes

* feat: update prisma cli docs

* fix: clarify the usage of prisma init better

* fix: add type defs

* feat: add pg as a dependency

* fix: broken internal link

* Update docs to perform migrations with connection pooling and Prisma config (#7266)

* feat: add mentions of new Prisma Studio (#7270)

* feat: add mentions of new Prisma Studio

* feat: add note for Studio for SQLite

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

* Update content/100-getting-started/02-prisma-orm/200-add-to-existing-project/200-sqlite.mdx

* fix: make prisma studio docs more accurate

* fix: add missing punctuation

* feat: add mention of mongo support coming for P7 (#7271)

* feat: add mention of mongo support coming for mongo

* fix: refinements

* Update content/100-getting-started/02-prisma-orm/200-add-to-existing-project/800-mongodb.mdx

* docs(postgres): remove accelerate reference
Remove reference to accelerate and rework the docs to account for the new v7 changes

* Optimised images with calibre/image-actions

* docs(): update with feedback

* Optimised images with calibre/image-actions

* docs(ppg): updates

* docs(): update based on feedback

* docs(): update based on feedback

---------

Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>
Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>
Co-authored-by: Nurul Sundarani <sundarani@prisma.io>

* docs(metrics): remove metrics API (#7248)

* DC-5044 `prisma-client-js` deprecated (#7219)

* `prisma-client-js` deprecated

* chore: empty commit

* broken link updated

* DC-5040 Env Vars via Config (#7227)

* added env vars section to various pages

* minor coderabbit updates

* verbose removed

* test removed redirect list

* removed quickstart addition

* converted quickstarts back

* urls deprecated (#7226)

* minimum version uodated (#7234)

* DC-5043 Middleware removed from docs (#7233)

* middleware deleted

* more middleware removed

* more middleware removed

* coderabbit changes

* docs(metrics): remove metrics API

* DC-6174: Remove adapter, engine, directUrl, studio from config (#7256)

* feat: add new features

* fix: revert links

* fix: broken links

* fix: broken link

* feat: restructure getting started side nav (#7245)

* feat(docs): add youtube embeded link to blog post (#7220)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* feat(docs): add quick  section to blog after the prompt (#7221)

Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>

* DC-5242 Astro Better-Auth Guide (#7215)

* doc created

* nextjs betterauth fixed

* guide broken down into manageable steps

* image added

* Optimised images with calibre/image-actions

* image updated

* Optimised images with calibre/image-actions

* lychee only comments on broken links

* config updated

* lychee updated based on CR comment

* chore: trigger CI checks

* ignore gnu

* fix: update naming to better-auth DC-6120

* Optimised images with calibre/image-actions

* chore: shorten word

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>

* feat: restructure getting started side nav

* DC-5841 Removed Linkspector (#7231)

* removed linkspector

* retrigger

* retrigger

* retrigger

* Update label for Prisma Postgres tab (#7236)

* fix: content changes for getting started page (#7216)

* fix: content changes for getting started page

* fix: add redirects

* getting started checkpoint

* css styles fixed

* updates

---------

Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>

* DC-5820 AI Agents Served Markdown (#7237)

* ai crawler check successful

* ai crawlers checked

* update

* added anthropic

* middleware update

* improve detection

---------

Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* feat: add prisma-orm quickstarts

* fix: update times and add proper links

* fix: instropspect changes

* feat: add get started from prisma orm page

* feat: add other orms

* fix: update other tools + ppg

* fix: add more clarity

* fix: add prisma postgres

* feat: clear migrate from early access

* fix: add to existing dbs sections

* Remove MCP server exploration tip (#7241)

Removed tip about using Cloudflare's AI Playground for MCP server exploration, as it no longer seems to reliably work.

* fix: clean-up docs files

* fix: typeorm missing urls

* fix: broken link

* fix: update titles

* fix: clear redirect loop (#7250)

* fix: add generate step + sqlite fixes

* fix: clean-up redirects file DC-6228

* fix: clean-up unnecessary file

* fix: remove unknown word

* fix: add links

---------

Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Mike Hartington <mikehartington@gmail.com>

* feat: update .env docs DC-6204 (#7259)

* fix: clarify config file path better (#7261)

* Update ORM docs (#7260)

* update

* use pg adapter instead of accelerate

* update

* add dotenv in prisma.config.ts

* fix warning note

* update

* update

* Update guides to use prisma.config.ts (#7243)

* (feat) Update guides to use prisma.config.ts

* refactor: Updated guides for Prisma 7 changes

---------

Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>

* feat: update ppg for other dbs section (#7264)

* feat: add kysley

* feat: add drizzle

* feat: add typeorm

* fix: clean-up

* feat: separate the sections better

* fix: remove badges

* feat: update prisma init related changes in other parts (#7267)

* feat: add kysley

* feat: add drizzle

* feat: add typeorm

* fix: clean-up

* fix: update prisma init command changes

* feat: update prisma cli docs

* fix: clarify the usage of prisma init better

* fix: add type defs

* feat: add pg as a dependency

* fix: broken internal link

* Update docs to perform migrations with connection pooling and Prisma config (#7266)

* feat: add mentions of new Prisma Studio (#7270)

* feat: add mentions of new Prisma Studio

* feat: add note for Studio for SQLite

* Update content/100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.mdx

* Update content/100-getting-started/02-prisma-orm/200-add-to-existing-project/200-sqlite.mdx

* fix: make prisma studio docs more accurate

* fix: add missing punctuation

* feat: add mention of mongo support coming for P7 (#7271)

* feat: add mention of mongo support coming for mongo

* fix: refinements

* Update content/100-getting-started/02-prisma-orm/200-add-to-existing-project/800-mongodb.mdx

* Restore content/200-orm/200-prisma-client/600-observability-and-logging/240-metrics.mdx

* docs(): update based on feedback

* Update content/200-orm/200-prisma-client/000-setup-and-configuration/050-databases-connections/115-connection-pool.mdx

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>
Co-authored-by: Ankur Datta <64993082+ankur-arch@users.noreply.github.com>
Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>
Co-authored-by: Nurul Sundarani <sundarani@prisma.io>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* fix build errors

* fix

* Add callout for bun and sqlite (#7280)

* Add caalout for bun and sqlite

* add link to bun docs

* fix: get started path url (#7281)

* fix: clarify studio better (#7282)

* feat: add connection pooling gif (#7284)

---------

Co-authored-by: Aidan McAlister <105178005+aidankmcalister@users.noreply.github.com>
Co-authored-by: Arthur <arthur_gamby@hotmail.fr>
Co-authored-by: Arthur Gamby <arthurgamby@Mac-002.lan>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Petra Donka <donkapetra@gmail.com>
Co-authored-by: Aidan McAlister <aidankmcalister@gmail.com>
Co-authored-by: Mike Hartington <mikehartington@gmail.com>
Co-authored-by: Aman Varshney <amanvarshney.work@gmail.com>
Co-authored-by: Nurul Sundarani <sundarani@prisma.io>
Co-authored-by: Mike Hartington <mhartington@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: Odysseus Zhang <b1fzhang@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants