📖 Step 6: Development#163 / 291
Schema
Schema
📖One-line summary
The design of a database table — its columns, types, and so on.
✨Example
A database that stores structured data
users table
| id | name | |
|---|---|---|
| 1 | David Kim | kim@test.com |
| 2 | Younghee Lee | lee@test.com |
| 3 | Minsu Park | park@test.com |
⚡Vibe coding prompt examples
>_
Define User, Post, and Comment models in a Prisma schema file. Set up relations and include createdAt and updatedAt fields.
>_
Build a Zod schema that validates signup form input. Validate email format, password minimum 8 chars, and password confirmation match.
Try these prompts in your AI coding assistant!