返回博客
后端
2026-07-082 min

Prisma 与 PostgreSQL 的数据建模心得

从 schema 设计到迁移管理,构建可维护的数据层……

Prisma 与 PostgreSQL 的数据建模心得

Schema 即文档

Prisma 的 schema.prisma 既是模型定义,也是团队协作的文档。把关系、索引、默认值都写清楚,新人上手时一眼就能看懂数据结构。

索引策略

prisma
model Post {
  id        String   @id @default(cuid())
  slug      String   @unique
  category  String
  date      String

  @@index([category])
  @@index([date])
}

迁移管理

开发期用 prisma db push 快速迭代,生产部署用 prisma migrate 保证可审计的迁移历史。两者不要混用。

PrismaPostgreSQL数据库