diff --git a/content/100-getting-started/03-prisma-postgres/110-import-from-existing-database-postgresql.mdx b/content/100-getting-started/03-prisma-postgres/110-import-from-existing-database-postgresql.mdx index 14d92e2099..310401625f 100644 --- a/content/100-getting-started/03-prisma-postgres/110-import-from-existing-database-postgresql.mdx +++ b/content/100-getting-started/03-prisma-postgres/110-import-from-existing-database-postgresql.mdx @@ -151,9 +151,9 @@ pg_restore \ && echo "-complete-" ``` -Once the command completes execution, you will have successfully imported the data from your your existing PostgreSQL database into Prisma Postgres 🎉 +Once the command completes execution, you will have successfully imported the data from your existing PostgreSQL database into Prisma Postgres 🎉 -To validate that the import worked, you can use [Prisma Studio](/postgres/database/tooling#viewing-and-editing-data-in-prisma-studio). Either open it in the [Platform Console](https://console.prisma.io) by clicking the **Studio** tab in the left-hand sidenav in your project or run this command to launch Prisma Studio locally: +To validate that the import worked, you can use [Prisma Studio](/postgres/integrations/viewing-data#viewing-and-editing-data-in-prisma-studio). Either open it in the [Platform Console](https://console.prisma.io) by clicking the **Studio** tab in the left-hand sidenav in your project or run this command to launch Prisma Studio locally: ```terminal npx prisma studio diff --git a/content/100-getting-started/03-prisma-postgres/115-import-from-existing-database-mysql.mdx b/content/100-getting-started/03-prisma-postgres/115-import-from-existing-database-mysql.mdx index 52c8461fb9..795c4c8634 100644 --- a/content/100-getting-started/03-prisma-postgres/115-import-from-existing-database-mysql.mdx +++ b/content/100-getting-started/03-prisma-postgres/115-import-from-existing-database-mysql.mdx @@ -133,7 +133,7 @@ If you see output like this, it means your data has been successfully exported t :::note -You also can use [Prisma Studio](/postgres/database/tooling#viewing-and-editing-data-in-prisma-studio) and verify whether the migration was successful: +You also can use [Prisma Studio](/postgres/integrations/viewing-data#viewing-and-editing-data-in-prisma-studio) and verify whether the migration was successful: ```terminal npx prisma studio diff --git a/content/250-postgres/300-database/650-direct-connections.mdx b/content/250-postgres/300-database/650-direct-connections.mdx index 744cbabcfb..c74f0e37aa 100644 --- a/content/250-postgres/300-database/650-direct-connections.mdx +++ b/content/250-postgres/300-database/650-direct-connections.mdx @@ -164,7 +164,7 @@ password: This will start the tunnel on a randomly assigned TCP port. The proxy automatically handles authentication, so any database credentials are accepted. The tunnel also encrypts traffic, meaning clients should be set to not require SSL. -You can now connet to your Prisma Postgres editor using your favorite PostgreSQL client, e.g. `psql` or a GUI like [TablePlus](/postgres/database/tooling#2a-connect-to-prisma-postgres-using-tableplus) or [DataGrip](/postgres/database/tooling#2b-connect-to-prisma-postgres-using-datagrip). To do so, you only need to provide the **`host`** and **`port`** from the output above. The TCP tunnel will handle authentication via the API key in your Prisma Postgres connection URL, so you can omit the values for **`username`** and **`password`**. +You can now connect to your Prisma Postgres editor using your favorite PostgreSQL client, e.g. `psql` or a GUI like [TablePlus](/postgres/integrations/viewing-data#2a-connect-to-prisma-postgres-using-tableplus) or [DataGrip](/postgres/integrations/viewing-data#2b-connect-to-prisma-postgres-using-datagrip). To do so, you only need to provide the **`host`** and **`port`** from the output above. The TCP tunnel will handle authentication via the API key in your Prisma Postgres connection URL, so you can omit the values for **`username`** and **`password`.** ### Customizing host and port @@ -176,7 +176,7 @@ npx @prisma/ppg-tunnel --host 127.0.0.1 --port 5432 ### Next steps -The local tunnel enables you to access Prisma Postgres from 3rd party database editors such as Postico, DataGrip, TablePlus and pgAdmin. Learn more in this [section](/postgres/database/tooling). +The local tunnel enables you to access Prisma Postgres from 3rd party database editors such as Postico, DataGrip, TablePlus and pgAdmin. Learn more in this [section](/postgres/integrations/viewing-data). ### Security considerations diff --git a/content/250-postgres/1100-integrations/100-netlify.mdx b/content/250-postgres/350-integrations/100-netlify.mdx similarity index 100% rename from content/250-postgres/1100-integrations/100-netlify.mdx rename to content/250-postgres/350-integrations/100-netlify.mdx diff --git a/content/250-postgres/1100-integrations/200-vercel.mdx b/content/250-postgres/350-integrations/200-vercel.mdx similarity index 100% rename from content/250-postgres/1100-integrations/200-vercel.mdx rename to content/250-postgres/350-integrations/200-vercel.mdx diff --git a/content/250-postgres/1100-integrations/300-idx.mdx b/content/250-postgres/350-integrations/300-idx.mdx similarity index 100% rename from content/250-postgres/1100-integrations/300-idx.mdx rename to content/250-postgres/350-integrations/300-idx.mdx diff --git a/content/250-postgres/1100-integrations/400-mcp-server.mdx b/content/250-postgres/350-integrations/400-mcp-server.mdx similarity index 100% rename from content/250-postgres/1100-integrations/400-mcp-server.mdx rename to content/250-postgres/350-integrations/400-mcp-server.mdx diff --git a/content/250-postgres/300-database/700-tooling.mdx b/content/250-postgres/350-integrations/450-viewing-data.mdx similarity index 97% rename from content/250-postgres/300-database/700-tooling.mdx rename to content/250-postgres/350-integrations/450-viewing-data.mdx index 6f231f9c2c..5e490ad917 100644 --- a/content/250-postgres/300-database/700-tooling.mdx +++ b/content/250-postgres/350-integrations/450-viewing-data.mdx @@ -1,7 +1,7 @@ --- -title: 'Tooling' -metaTitle: 'Tooling' -metaDescription: 'Learn about connecting directly to your database via TCP tunnel' +title: 'Viewing data' +metaTitle: 'Viewing data' +metaDescription: 'Viewing and editing data in Prisma Postgres via Prisma Studio or other database GUIs.' tocDepth: 3 toc: true --- diff --git a/content/250-postgres/1100-integrations/500-vscode.mdx b/content/250-postgres/350-integrations/500-vscode.mdx similarity index 100% rename from content/250-postgres/1100-integrations/500-vscode.mdx rename to content/250-postgres/350-integrations/500-vscode.mdx diff --git a/content/250-postgres/1100-integrations/_category_.json b/content/250-postgres/350-integrations/_category_.json similarity index 100% rename from content/250-postgres/1100-integrations/_category_.json rename to content/250-postgres/350-integrations/_category_.json diff --git a/content/250-postgres/1100-integrations/index.mdx b/content/250-postgres/350-integrations/index.mdx similarity index 100% rename from content/250-postgres/1100-integrations/index.mdx rename to content/250-postgres/350-integrations/index.mdx diff --git a/static/_redirects b/static/_redirects index d6f30752ca..e2c2eb925f 100644 --- a/static/_redirects +++ b/static/_redirects @@ -542,7 +542,7 @@ /postgres/connection-pooling /docs/postgres/database/connection-pooling /postgres/backups /docs/postgres/database/backups /postgres/tcp-tunnel /docs/postgres/database/tcp-tunnel -/postgres/tooling /docs/postgres/database/tooling +/postgres/tooling /docs/postgres/integrations/tooling /postgres/caching /docs/postgres/database/caching /optimize/recommendations/excessive-number-of-rows-returned /docs/postgres/query-optimization/recommendations/excessive-number-of-rows-returned @@ -619,7 +619,7 @@ /postgres/connection-pooling* /docs/postgres/database/connection-pooling /postgres/backups* /docs/postgres/database/backups /postgres/tcp-tunnel* /docs/postgres/database/tcp-tunnel -/postgres/tooling* /docs/postgres/database/tooling +/postgres/tooling* /docs/postgres/integrations/tooling /postgres/api-reference* /docs/postgres/database/api-reference /optimize/recommendations/* /docs/postgres/query-optimization/recommendations @@ -633,4 +633,8 @@ /postgres/more/known-limitations /docs/postgres/introduction/overview /postgres/integrations/vscode-extension* /postgres/integrations/vscode:splat +/postgres/database/tooling /docs/postgres/integrations/viewing-data +/postgres/integrations/tooling /docs/postgres/integrations/viewing-data + + ### NO REDIRECTS BELOW THIS LINE. ADD REDIRECTS ABOVE THIS SECTION ###