prisma-orm

Solid

Prisma ORM schema design, migrations, relations, query optimization, and database integration patterns.

API & Backend 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Prisma ORM Skill Expert assistance for Prisma ORM schema design, migrations, relations, query optimization, and database integration patterns. ## Capabilities - Design Prisma schemas with proper relations - Generate and manage database migrations - Optimize queries for performance - Implement type-safe database access - Configure multi-database support - Set up seeding and testing strategies ## Usage Invoke this skill when you need to: - Design database schemas with Prisma - Set up migrations and database workflows - Optimize database queries - Implement complex relations - Configure Prisma with Next.js or other frameworks ## Inputs | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | database | string | No | postgresql, mysql, sqlite, mongodb | | models | array | No | List of models to create | | relations | array | No | Model relationships | | features | array | No | migrations, seeding, edge | ### Schema Configuration ```json { "database": "postgresql", "models": [ { "name": "User", "fields": [ { "name": "email", "type": "String", "unique": true }, { "name": "name", "type": "String", "optional": true }, { "name": "posts", "type": "Post", "relation": "one-to-many" } ] }, { "name": "Post", "fields": [ { "name": "title", "type": "String" }, { "name": "content", "type": "String", "optional": true }, { "name": "author", "type": "User"...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Integrates with

Related Skills