Skip to main content

prisma-database-setup-postgresql

PostgreSQL Setup. Reference when using this Prisma feature.

跳到安装

来源信息

仓库
prisma/cursor-plugin
最近来源活动
2026年2月6日 14:17
检测到的 SKILL.md 语言
英语
星标
9
分支
1

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

文件资源管理器
2 个文件

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
prisma-database-setup-postgresql
description
PostgreSQL Setup. Reference when using this Prisma feature.
license
MIT
metadata
{"author":"prisma","version":"7.0.0"}
# PostgreSQL Setup Configure Prisma with PostgreSQL. ## Prerequisites - PostgreSQL database (local or cloud) - Connection string ## 1. Schema Configuration In `prisma/schema.prisma`: ```prisma datasource db { provider = "postgresql" } generator client { provider = "prisma-client" output = "../generated" } ``` ## 2. Config Configuration (v7) In `prisma.config.ts`: ```typescript import { defineConfig, env } from 'prisma/config' export default defineConfig({ schema: 'prisma/schema.prisma', datasource: { url: env('DATABASE_URL'), }, }) ``` ## 3. Environment Variable In `.env`: ```env DATABASE_URL="postgresql://user:password@localhost:5432/mydb?schema=public" ``` ### Connection String Format ``` postgresql://USER:PASSWORD@HOST:PORT/DATABASE?schema=SCHEMA ``` - **USER**: Database user - **PASSWORD**: Password (URL encoded if special chars) - **HOST**: Hostname (localhost, IP, or domain) - **PORT**: Port (default 5432) - **DATABASE**: Database name - **SCHEMA**: Schema name (default `public`) ## Driver Adapter (Prisma ORM 7 required) Prisma ORM 7 uses the query compiler by default, so you must use a driver adapter. 1. Install adapter and driver: ```bash npm install @prisma/adapter-pg pg ``` 2. Instantiate Prisma Client with the adapter: ```typescript import 'dotenv/config' import { PrismaClient } from '../generated/client' import { PrismaPg } from '@prisma/adapter-pg' const adapter = new PrismaPg({ connectionString: process.env.DATABASE_URL }) const prisma = new PrismaClient({ adapter }) ``` ## Common Issues ### "Can't reach database server" - Check host and port - Check firewall settings - Ensure database is running ### "Authentication failed" - Check user/password - Special characters in password must be URL-encoded ### "Schema does not exist" - Ensure `?schema=public` (or your schema) is in the URL
在 GitHub 查看