diff --git a/src/content/docs/hyperdrive/examples/connect-to-postgres/postgres-database-providers/prisma-postgres.mdx b/src/content/docs/hyperdrive/examples/connect-to-postgres/postgres-database-providers/prisma-postgres.mdx index 04b27037e1f27e7..ed93b5cb46c1b55 100644 --- a/src/content/docs/hyperdrive/examples/connect-to-postgres/postgres-database-providers/prisma-postgres.mdx +++ b/src/content/docs/hyperdrive/examples/connect-to-postgres/postgres-database-providers/prisma-postgres.mdx @@ -29,6 +29,16 @@ You can connect Hyperdrive to any existing Prisma Postgres database by using you postgres://USERNAME:PASSWORD@HOSTNAME_OR_IP_ADDRESS:PORT/database_name ``` +:::note + +An alternative to the Prisma Data Platform is to use the [`create-db`](https://www.npmjs.com/package/create-db) package. This package will generate a quick temporary Prisma Postgres database for you to use. + +```bash +npx create-db@latest +``` + +::: + With this connection string, you can now create a Hyperdrive database configuration. ## 2. Create a database configuration