Veritabanı Şeması Göçleri
Sorunsuz geliştirme ve dağıtım için veritabanı şemanızdaki değişiklikleri Prisma Migrate kullanarak yönetin.
Veritabanı Şeması Göçleri, CoddyKit'te ücretsiz bir Next.js 15 Fullstack (App Router + Server Actions) dersidir. Bu, 4 dersinin 3. dersidir. Aşağıdan dersin tamamını ücretsiz okuyabilir, sonra tarayıcıda yerleşik kod editörü ve 7/24 yapay zeka koçu ile uygulamalı olarak pratik yapabilirsin. Bu, Next.js 15 Fullstack (App Router + Server Actions) öğrenme yolunun bir parçasıdır ve ilerlemeniz web ve CoddyKit uygulaması arasında senkronize olur. Next.js 15 Fullstack (App Router + Server Actions) kursu toplamda 4 dersten oluşur.
Bu dersin bazı bölümleri henüz çevrilmemiş olup İngilizce olarak gösterilmektedir.
What are Database Migrations?
As your application evolves, so does its database structure, also known as its schema.
Database migrations are like version control for your database schema. They are a way to manage changes to your database structure in a controlled and trackable manner.
- They ensure your database matches your application's needs.
- They prevent data loss during schema changes.
- They provide a clear history of all schema modifications.
Why Use Prisma Migrate?
Managing database schema changes manually can be complex and error-prone. Prisma Migrate simplifies this process significantly.
- Automatic Generation: It generates SQL migration files based on changes in your Prisma schema.
- History Tracking: It keeps a history of applied migrations, making rollbacks and team collaboration easier.
- Environment Consistency: Ensures your development, staging, and production databases all have the correct schema.
Your Prisma Schema File
Prisma Migrate uses your schema.prisma file as the source of truth for your database schema. Any changes you want to make to your database structure start here.
Let's recall a basic schema.prisma setup:
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model User {
id Int @id @default(autoincrement())
name String
posts Post[]
}
model Post {
id Int @id @default(autoincrement())
title String
content String?
published Boolean @default(false)
author User @relation(fields: [authorId], references: [id])
authorId Int
}Initializing Your First Migration
When you first set up your Prisma schema, you'll want to create an initial migration to apply this schema to your database. You use the prisma migrate dev command for this.
This command does two main things:
- Generates a new migration file (SQL) in the
prisma/migrationsfolder. - Applies the migration to your database.
npx prisma migrate dev --name initial_setupUnderstanding Migration Files
After running npx prisma migrate dev, Prisma creates a new folder inside prisma/migrations with a timestamp and the name you provided (e.g., 20231026123456_initial_setup).
Inside this folder, you'll find:
migration.sql: This file contains the raw SQL commands generated by Prisma to create or alter your database tables.migration.jsormigration.ts: (If using TypeScript/JavaScript) Metadata about the migration.
It's important to commit these files to your version control system!
Making Schema Changes
Now, let's say you want to add an email field to your User model. You simply update your schema.prisma file.
Prisma will detect this change and help you generate a new migration.
model User {
id Int @id @default(autoincrement())
name String
email String @unique // Added new field
posts Post[]
}Generating a New Migration
After modifying your schema.prisma, run npx prisma migrate dev again. Prisma will compare your updated schema with the current database state and generate a new migration file.
It will then apply this new migration, adding the email column to your User table.
npx prisma migrate dev --name add_user_emailApplying Migrations in Production
For production environments, you typically use npx prisma migrate deploy. This command applies all pending migrations that have not yet been run on the database.
Unlike migrate dev, deploy does not generate new migration files; it only applies existing ones. This makes it safe and predictable for production deployments.
npx prisma migrate deployChecking Migration Status
To see which migrations have been applied to your database and which are pending, you can use the npx prisma migrate status command.
This is useful for debugging or ensuring your database is up-to-date with your application's expected schema.
npx prisma migrate statusPrisma Migrate Commands Quiz
Which of the following statements correctly describe the purpose of Prisma Migrate commands?
Recap: Schema Migrations
Great job! You've learned how to manage your database schema effectively using Prisma Migrate.
- Prisma Migrate helps version control your database schema.
- You define schema changes in
schema.prisma. npx prisma migrate devcreates and applies migrations in development.npx prisma migrate deployapplies existing migrations in production.npx prisma migrate statuschecks the current migration state.
This powerful tool ensures your database structure stays consistent and aligned with your application's needs as it grows.
Sıkça Sorulan Sorular
“Veritabanı Şeması Göçleri” dersi ücretsiz mi?
Evet — “Veritabanı Şeması Göçleri” dersin tüm metni burada web'de ücretsiz olarak okunabilir. Etkileşimli olarak pratik yapmak (yerleşik kod editörü ve 7/24 yapay zeka koçu) ve Next.js 15 Fullstack (App Router + Server Actions) kursunun geri kalanını açmak için CoddyKit PRO'ya yükselt. Next.js 15 Fullstack (App Router + Server Actions) kursu toplamda 4 dersten oluşur.
“Veritabanı Şeması Göçleri” dersinde ne öğreneceğim?
Sorunsuz geliştirme ve dağıtım için veritabanı şemanızdaki değişiklikleri Prisma Migrate kullanarak yönetin. Next.js 15 Fullstack (App Router + Server Actions) ile uygulamalı kodu tarayıcıda doğrudan çalıştırarak pratik yaparsın ve 7/24 yapay zeka koçu dersi çalışırken sorularını yanıtlar.
Next.js 15 Fullstack (App Router + Server Actions) öğrenmeye başlamak için deneyim gerekli mi?
Önceden deneyim gerekmez. CoddyKit'te Next.js 15 Fullstack (App Router + Server Actions), başlangıçtan ileri seviyeye kadar yapılandırıldığı için buradan başlayabilir veya başından başlayıp kendi hızında ilerleme yapabilirsin. Bu, 4 dersinin 3. dersidir.
“Veritabanı Şeması Göçleri” dersi ne kadar sürer?
Çoğu CoddyKit dersi yaklaşık 5–10 dakika sürer. Her biri kısa ve etkileşimli olduğu için sabit ilerleme yaparsın ve web ile uygulama arasında tam olarak bıraktığın yerden devam edebilirsin.
Bu Next.js 15 Fullstack (App Router + Server Actions) dersinde kod yazıp çalıştırabilir miyim?
Evet. Her Next.js 15 Fullstack (App Router + Server Actions) dersi yerleşik bir kod editörü içerir, bu sayede tarayıcıda gerçek kod yazıp çalıştırabilir ve anlık yapay zeka geri bildirimi alırsın — yerel kurulum gerekli değildir.
Bu kursun tüm dersleri
- Prisma ORM'yi Kurma
- Sunucu Eylemleriyle CRUD
- Veritabanı Şeması Göçleri
- Veritabanı Tohumlama ve Bağlantı Havuzlama