Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Overview
description: 'Prisma ORM supports PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and serverless databases'
url: /docs/orm/core-concepts/supported-databases
metaTitle: Databases
metaDescription: Databases
metaDescription: Prisma ORM supports PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and serverless databases'
---

## Database versions
Expand Down
4 changes: 2 additions & 2 deletions apps/docs/content/docs/orm/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: Prisma ORM
description: 'Prisma ORM is a next-generation Node.js and TypeScript ORM that provides type-safe database access, migrations, and a visual data editor.'
url: /docs/orm
metaTitle: ORM
metaDescription: ORM
metaTitle: What is Prisma ORM? (Overview)
metaDescription: This page gives a high-level overview of what Prisma ORM is and how it works. It's a great starting point for Prisma newcomers
---

Prisma ORM is [open-source](https://github.com/prisma/prisma) and consists of:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ model users {
}
```

## Using `@map` and `@@map` to rename fields and models in the Prisma Client API
## Using @map and @@map to rename fields and models in the Prisma Client API

You can "rename" fields and models that are used in Prisma Client by mapping them to the "original" names in the database using the `@map` and `@@map` attributes. For the example above, you could e.g. annotate your models as follows.

Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/orm/prisma-migrate/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Overview of Prisma Migrate
description: Learn everything you need to know about Prisma Migrate
url: /docs/orm/prisma-migrate
metaTitle: 'Prisma Migrate | Database, Schema, SQL Migration Tool'
metaTitle: 'Prisma Migrate: Database, Schema, SQL Migration Tool'
metaDescription: Prisma Migrate is a database migration tool available via the Prisma CLI that integrates with Prisma schema for data modeling.
---

Expand Down
4 changes: 2 additions & 2 deletions apps/docs/content/docs/orm/prisma-schema/overview/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Syntax highlighting for PSL is available via a [VS Code extension](https://marke

PSL code snippets on GitHub can be rendered with syntax highlighting as well by using the `.prisma` file extension or annotating fenced code blocks in Markdown with `prisma`:

````
````mdx
```prisma
model User {
id Int @id @default(autoincrement())
Expand Down Expand Up @@ -191,7 +191,7 @@ There are no configuration options - [formatting rules](#formatting-rules) are f

### Formatting rules

#### Configuration blocks are aligned by their `=` sign
#### Configuration blocks are aligned by their = sign

```
block _ {
Expand Down
5 changes: 4 additions & 1 deletion apps/docs/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ const barlow = Barlow({

export const metadata: Metadata = {
metadataBase: new URL(getBaseUrl()),
title: 'Prisma Documentation',
title: {
default: 'Prisma Documentation',
template: '%s | Prisma Documentation',
},
description:
'Documentation for Prisma ORM, Prisma Postgres, Prisma Accelerate, and the Prisma ecosystem. Build type-safe database applications with ease.',
};
Expand Down
Loading