跳至主要内容

内省

使用 Prisma ORM 内省您的数据库

在本指南中,我们将使用一个包含三个表的演示 SQL 模式。

CREATE TABLE User (
id INTEGER PRIMARY KEY AUTO_INCREMENT NOT NULL,
name VARCHAR(255),
email VARCHAR(255) UNIQUE NOT NULL
);

CREATE TABLE Post (
id INTEGER PRIMARY KEY AUTO_INCREMENT NOT NULL,
title VARCHAR(255) NOT NULL,
createdAt TIMESTAMP NOT NULL DEFAULT now(),
content TEXT,
published BOOLEAN NOT NULL DEFAULT false,
authorId INTEGER NOT NULL,
FOREIGN KEY (authorId) REFERENCES User(id)
);

CREATE TABLE Profile (
id INTEGER PRIMARY KEY AUTO_INCREMENT NOT NULL,
bio TEXT,
userId INTEGER UNIQUE NOT NULL,
FOREIGN KEY (userId) REFERENCES User(id)
);
展开以获取表的图形概述

用户

列名类型主键外键必需默认值
idINTEGER✔️✔️自动递增
nameVARCHAR(255)-
emailVARCHAR(255)✔️-

帖子

列名类型主键外键必需默认值
idINTEGER✔️✔️自动递增
createdAtDATETIME(3)✔️now()
titleVARCHAR(255)✔️-
contentTEXT-
publishedBOOLEAN✔️false
authorIdINTEGER✔️✔️false

个人资料

列名类型主键外键必需默认值
idINTEGER✔️✔️自动递增
bioTEXT-
userIdINTEGER✔️✔️-

下一步,您将内省您的数据库。内省的结果将在您的 Prisma 模式中创建一个 数据模型

运行以下命令来内省您的数据库

npx prisma db pull

此命令读取定义在 .env 中的 DATABASE_URL 环境变量,并连接到您的数据库。建立连接后,它会内省数据库(即它读取数据库模式)。然后,它将数据库模式从 SQL 转换为 Prisma 数据模型。

内省完成后,您的 Prisma 模式将更新

Introspect your database

数据模型现在看起来类似于此(请注意,模型上的字段已重新排序以提高可读性)

prisma/schema.prisma
model Post {
id Int @id @default(autoincrement())
title String @db.VarChar(255)
createdAt DateTime @default(now()) @db.Timestamp(0)
content String? @db.Text
published Boolean @default(false)
authorId Int
User User @relation(fields: [authorId], references: [id], onDelete: NoAction, onUpdate: NoAction, map: "Post_ibfk_1")

@@index([authorId], map: "authorId")
}

model Profile {
id Int @id @default(autoincrement())
bio String? @db.Text
userId Int @unique(map: "userId")
User User @relation(fields: [userId], references: [id], onDelete: NoAction, onUpdate: NoAction, map: "Profile_ibfk_1")
}

model User {
id Int @id @default(autoincrement())
name String? @db.VarChar(255)
email String @unique(map: "email") @db.VarChar(255)
Post Post[]
Profile Profile?
}
info

有关模式定义的详细信息,请参阅 Prisma 模式参考

Prisma ORM 的数据模型是您的数据库模式的声明式表示,并作为生成的 Prisma Client 库的基础。您的 Prisma Client 实例将公开专门针对这些模型的查询。

现在,数据模型中有一些小的“问题”

  • User 关系字段是大写的,因此不符合 Prisma 的 命名约定。为了表达更多“语义”,如果将此字段称为 author描述UserPost 之间的关系会更好。
  • User 上的 PostProfile 关系字段以及 Profile 上的 User 关系字段都是大写的。为了符合 Prisma 的 命名约定,这两个字段都应该小写为 postprofileuser
  • 即使是小写,User 上的 post 字段仍然有点错误命名。这是因为它实际上是指 列表 的帖子 - 因此,更好的名称将是复数形式:posts

这些更改与生成的 Prisma Client API 相关,在生成的 Prisma Client API 中,使用小写关系字段 authorpostsprofileuser 会对 JavaScript/TypeScript 开发人员来说感觉更自然和更符合习惯。因此,您可以 配置 Prisma Client API

因为 关系字段虚拟的(即它们不会直接在数据库中体现),所以您可以在 Prisma 模式中手动重命名它们,而无需触碰数据库

prisma/schema.prisma
model Post {
id Int @id @default(autoincrement())
title String @db.VarChar(255)
createdAt DateTime @default(now()) @db.Timestamp(0)
content String? @db.Text
published Boolean @default(false)
authorId Int
author User @relation(fields: [authorId], references: [id], onDelete: NoAction, onUpdate: NoAction, map: "Post_ibfk_1")

@@index([authorId], map: "authorId")
}

model Profile {
id Int @id @default(autoincrement())
bio String? @db.Text
userId Int @unique(map: "userId")
user User @relation(fields: [userId], references: [id], onDelete: NoAction, onUpdate: NoAction, map: "Profile_ibfk_1")
}

model User {
id Int @id @default(autoincrement())
name String? @db.VarChar(255)
email String @unique(map: "email") @db.VarChar(255)
posts Post[]
profile Profile?
}

在本例中,数据库模式遵循了 Prisma ORM 模型的命名约定(只有从内省生成的虚拟关系字段不符合约定,需要调整)。这优化了生成的 Prisma Client API 的人体工程学。

但是,有时您可能想要对在 Prisma Client API 中公开的列和表的名称进行其他更改。一个常见的例子是将数据库模式中常用的snake_case 表示法转换为对 JavaScript/TypeScript 开发人员来说感觉更自然的PascalCasecamelCase 表示法。

假设您从内省中获得了以下基于snake_case 表示法的模型

model my_user {
user_id Int @id @default(autoincrement())
first_name String?
last_name String @unique
}

如果您为该模型生成了 Prisma Client API,它将在其 API 中获取snake_case 表示法

const user = await prisma.my_user.create({
data: {
first_name: 'Alice',
last_name: 'Smith',
},
})

如果您不想在 Prisma Client API 中使用数据库中的表和列名,可以使用 @map@@map 配置它们

model MyUser {
userId Int @id @default(autoincrement()) @map("user_id")
firstName String? @map("first_name")
lastName String @unique @map("last_name")

@@map("my_user")
}

使用这种方法,您可以随意命名您的模型及其字段,并使用 @map(用于字段名)和 @@map(用于模型名)指向底层的表和列。您的 Prisma Client API 现在如下所示

const user = await prisma.myUser.create({
data: {
firstName: 'Alice',
lastName: 'Smith',
},
})

配置 Prisma Client API 页面上了解有关此内容的更多信息。