📖 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
idnameemail
1David Kimkim@test.com
2Younghee Leelee@test.com
3Minsu Parkpark@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!