From 0a31170b97ba58e86550b187f00789ee1de46be6 Mon Sep 17 00:00:00 2001 From: Meg528 <71841959+Meg528@users.noreply.github.com> Date: Thu, 10 Oct 2024 08:28:50 -0700 Subject: [PATCH] Update 30-schema-in-postgresql.mdx --- docs/30-schema-in-postgresql.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/30-schema-in-postgresql.mdx b/docs/30-schema-in-postgresql.mdx index dc86ed6..e755478 100644 --- a/docs/30-schema-in-postgresql.mdx +++ b/docs/30-schema-in-postgresql.mdx @@ -2,7 +2,7 @@ import Screenshot from "@site/src/components/Screenshot"; # 📘 Schema in PostgreSQL -The following screenshot shows an Entity-Relationship diagram of the relational database we wish to migrate. This is a Library management app, that stores information about Books, where a Book can have many Authors, an Author can write many books, users can borrow books and leave reviews. +The following screenshot shows an entity-relationship diagram of the relational database we wish to migrate. This is a library management app that stores information about books, where a book can have many authors, an author can write many books, and users can borrow books and leave reviews. This is the sample schema we use during our [Developer Days's Intro Lab](https://mongodb-developer.github.io/intro-lab/docs/importing-data/intro).