Add a New Prisma Entity

Use Copilot to define a new Prisma model, migrate, seed, and test it.

category:database
prisma
schema
workflow
multi-step
0

Prompt

A repeatable database workflow powered by Copilot for schema changes and model scaffolding.

## Steps:

1. Describe the new entity in a comment.

2. Ask Copilot: "Generate a Prisma model for this entity."

3. Refine fields and relations.

4. Run prisma migrate.

5. Generate CRUD functions using Copilot.

6. Seed example data.

7. Add at least one integration test.