From 3b2b8a1931121ba56fe21e2dc75a13aea6498f61 Mon Sep 17 00:00:00 2001 From: Simeon Griggs Date: Wed, 6 May 2026 12:08:38 +0100 Subject: [PATCH 1/3] docs(readme): clarify Vitess/MySQL vs Postgres Co-authored-by: Cursor --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6e1babc..d87723a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Learn how to integrate PlanetScale with a sample Django application +> **Note:** This tutorial targets PlanetScale Vitess/MySQL (including the MySQL-focused Django connection flow below). PlanetScale also offers managed PostgreSQL; use Django's PostgreSQL database backend and Postgres connection settings for those databases. For more information and examples, see the [PlanetScale Postgres documentation](https://planetscale.com/docs/postgres). + This sample application demonstrates how to connect to a PlanetScale MySQL database, create and run migrations, seed the database, and display the data. For the full tutorial, see the [Django PlanetScale documentation](https://planetscale.com/docs/tutorials/connect-django-app). From adfd1449612f74c39730e5b7f9aa53eaa1c6c690 Mon Sep 17 00:00:00 2001 From: Simeon Griggs Date: Wed, 6 May 2026 12:12:26 +0100 Subject: [PATCH 2/3] docs(readme): simplify Vitess/MySQL note Co-authored-by: Cursor --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d87723a..cf8099d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Learn how to integrate PlanetScale with a sample Django application -> **Note:** This tutorial targets PlanetScale Vitess/MySQL (including the MySQL-focused Django connection flow below). PlanetScale also offers managed PostgreSQL; use Django's PostgreSQL database backend and Postgres connection settings for those databases. For more information and examples, see the [PlanetScale Postgres documentation](https://planetscale.com/docs/postgres). +> **Note:** This tutorial targets PlanetScale Vitess/MySQL. PlanetScale also offers managed PostgreSQL. For more information, see the [PlanetScale Postgres documentation](https://planetscale.com/docs/postgres). This sample application demonstrates how to connect to a PlanetScale MySQL database, create and run migrations, seed the database, and display the data. From 2dbe2e084d88ab706b9bb521b9fc17aef01a1dc7 Mon Sep 17 00:00:00 2001 From: Simeon Griggs Date: Wed, 6 May 2026 12:14:18 +0100 Subject: [PATCH 3/3] docs(readme): use Postgres instead of PostgreSQL in note Co-authored-by: Cursor --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cf8099d..8aaebeb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Learn how to integrate PlanetScale with a sample Django application -> **Note:** This tutorial targets PlanetScale Vitess/MySQL. PlanetScale also offers managed PostgreSQL. For more information, see the [PlanetScale Postgres documentation](https://planetscale.com/docs/postgres). +> **Note:** This tutorial targets PlanetScale Vitess/MySQL. PlanetScale also offers managed Postgres. For more information, see the [PlanetScale Postgres documentation](https://planetscale.com/docs/postgres). This sample application demonstrates how to connect to a PlanetScale MySQL database, create and run migrations, seed the database, and display the data.