prisma-database-setup-postgresql
Installation
SKILL.md
PostgreSQL Setup
Configure Prisma with PostgreSQL.
Prerequisites
- PostgreSQL database (local or cloud)
- Connection string
1. Schema Configuration
In prisma/schema.prisma:
datasource db {
provider = "postgresql"
}
Related skills