📖 Step 6: Development#164 / 291
Migration
Migration
📖One-line summary
The work of changing the structure of a database.
✨Example
Evolve DB schemas step by step
-- Step 1: Before
| id | name | |
|---|---|---|
| 1 | Dan | dan@email.com |
⚡Vibe coding prompt examples
>_
Generate a Prisma migrate migration that adds a 'role' column to the existing users table schema. Set the default value to 'user'.
>_
Design a database migration strategy. Share a safe way to change table structures while preserving existing data.
Try these prompts in your AI coding assistant!