From 286e1a726e77dc9e477afe78d346b3206a9337d7 Mon Sep 17 00:00:00 2001 From: Victor Fernandez de Alba Date: Mon, 6 Oct 2025 11:23:59 +0200 Subject: [PATCH 1/2] Added Prisma glossary term --- docs/glossary.md | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/docs/glossary.md b/docs/glossary.md index 2fb6d1313..03b59ed92 100644 --- a/docs/glossary.md +++ b/docs/glossary.md @@ -924,9 +924,24 @@ content management system user interface CMSUI In Seven, the content management system user interface (CMSUI) is the editor and administrator part of the app. Its counterpart is the {term}`Public UI`. - + Public UI In Seven, Public UI is the end user interface part, which displays content to both authenticated and anonymous users. Its counterpart is the {term}`CMSUI`. - + +Prisma + [Prisma](https://www.prisma.io/) is an open-source database toolkit for TypeScript and Node.js that simplifies database access and management. + It provides a type-safe and intuitive way to interact with databases, making it easier to build and maintain applications. + + Prisma consists of three main components: + + - Prisma Client: An auto-generated query builder that allows developers to interact with the database using a type-safe API. + - Prisma Migrate: A migration tool that helps manage database schema changes over time. + - Prisma Studio: A visual interface for exploring and managing data in the database. + + Prisma supports various databases, including PostgreSQL, MySQL, SQLite, SQL Server, and MongoDB. + + ```{seealso} + https://www.prisma.io/ + ``` ``` From 95e02eef09b76404f06da8317bf4acbccba03d5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Fern=C3=A1ndez=20de=20Alba?= Date: Mon, 6 Oct 2025 11:32:04 +0200 Subject: [PATCH 2/2] Update docs/glossary.md Co-authored-by: Steve Piercy --- docs/glossary.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/glossary.md b/docs/glossary.md index 03b59ed92..0c2b0902c 100644 --- a/docs/glossary.md +++ b/docs/glossary.md @@ -935,9 +935,14 @@ Prisma Prisma consists of three main components: - - Prisma Client: An auto-generated query builder that allows developers to interact with the database using a type-safe API. - - Prisma Migrate: A migration tool that helps manage database schema changes over time. - - Prisma Studio: A visual interface for exploring and managing data in the database. + Prisma Client + : An auto-generated query builder that allows developers to interact with the database using a type-safe API. + + Prisma Migrate + : A migration tool that helps manage database schema changes over time. + + Prisma Studio + : A visual interface for exploring and managing data in the database. Prisma supports various databases, including PostgreSQL, MySQL, SQLite, SQL Server, and MongoDB.