From f905d5f70ffe9b64819bd203e0cd71cdfbef11e3 Mon Sep 17 00:00:00 2001 From: Carla Goncalves Date: Tue, 23 Dec 2025 14:07:02 +0000 Subject: [PATCH] update broken cockroachdb link --- content/200-orm/050-overview/500-databases/840-cockroachdb.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/200-orm/050-overview/500-databases/840-cockroachdb.mdx b/content/200-orm/050-overview/500-databases/840-cockroachdb.mdx index beb30d2655..07ca4ee42b 100644 --- a/content/200-orm/050-overview/500-databases/840-cockroachdb.mdx +++ b/content/200-orm/050-overview/500-databases/840-cockroachdb.mdx @@ -90,7 +90,7 @@ model User { For compatibility with existing databases, you may sometimes still need to generate a fixed sequence of integer key values. In these cases, you can use Prisma ORM's inbuilt [`sequence()`](/orm/reference/prisma-schema-reference#sequence) function for CockroachDB. For a list of available options for the `sequence()` function, see our [reference documentation](/orm/reference/prisma-schema-reference#sequence). -For more information on generating database keys, see CockroachDB's [Primary key best practices](https://www.cockroachlabs.com/docs/v21.2/schema-design-table#primary-key-best-practices) guide. +For more information on generating database keys, see CockroachDB's [Primary key best practices](https://www.cockroachlabs.com/docs/stable/schema-design-table#select-primary-key-columns) guide. ## Example