0Pricing
Next.js 15 Fullstack (App Router + Server Actions) · Lección

Migraciones del esquema de la base de datos

Gestione los cambios en el esquema de su base de datos mediante Prisma Migrate para facilitar el desarrollo y la implementación.

Migraciones del esquema de la base de datos es una lección gratuita de Next.js 15 Fullstack (App Router + Server Actions) en CoddyKit. Esta es la lección 3 de 4. Puedes leer la lección completa abajo gratuitamente — luego la practicas en el navegador con un editor de código integrado y un tutor de IA 24/7. Forma parte de la ruta de aprendizaje de Next.js 15 Fullstack (App Router + Server Actions), y tu progreso se sincroniza en la web y la app de CoddyKit. El curso de Next.js 15 Fullstack (App Router + Server Actions) incluye 4 lecciones en total.

Partes de esta lección aún no han sido traducidas y se muestran en inglés.

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:

  1. Generates a new migration file (SQL) in the prisma/migrations folder.
  2. Applies the migration to your database.
npx prisma migrate dev --name initial_setup

Understanding 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.js or migration.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_email

Applying 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 deploy

Checking 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 status

Prisma 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 dev creates and applies migrations in development.
  • npx prisma migrate deploy applies existing migrations in production.
  • npx prisma migrate status checks the current migration state.

This powerful tool ensures your database structure stays consistent and aligned with your application's needs as it grows.

Preguntas frecuentes

¿La lección «Migraciones del esquema de la base de datos» es gratis?

Sí — el texto completo de «Migraciones del esquema de la base de datos» es gratis para leer aquí en la web. Para practicarla de forma interactiva (editor de código integrado y tutor de IA 24/7) y desbloquear el resto del curso de Next.js 15 Fullstack (App Router + Server Actions), actualiza a CoddyKit PRO. El curso de Next.js 15 Fullstack (App Router + Server Actions) incluye 4 lecciones en total.

¿Qué aprenderé en «Migraciones del esquema de la base de datos»?

Gestione los cambios en el esquema de su base de datos mediante Prisma Migrate para facilitar el desarrollo y la implementación. Practicas Next.js 15 Fullstack (App Router + Server Actions) con código real que ejecutas directamente en el navegador, y un tutor de IA 24/7 responde tus preguntas mientras trabajas en la lección.

¿Necesito experiencia previa para empezar Next.js 15 Fullstack (App Router + Server Actions)?

No se requiere experiencia previa. Next.js 15 Fullstack (App Router + Server Actions) en CoddyKit está estructurado para principiantes hasta estudiantes avanzados, así que puedes empezar aquí o desde el inicio y avanzar a tu ritmo. Esta es la lección 3 de 4.

¿Cuánto tiempo toma la lección «Migraciones del esquema de la base de datos»?

La mayoría de las lecciones de CoddyKit toman alrededor de 5–10 minutos. Cada una es compacta e interactiva, así que avanzas constantemente y retomas exactamente por donde dejaste en la web y la app.

¿Puedo escribir y ejecutar código en esta lección de Next.js 15 Fullstack (App Router + Server Actions)?

Sí. Cada lección de Next.js 15 Fullstack (App Router + Server Actions) incluye un editor de código integrado, así que escribes y ejecutas código real directamente en tu navegador y obtienes retroalimentación instantánea de IA — sin configuración local necesaria.

Todas las lecciones de este curso

  1. Configuración de Prisma ORM
  2. CRUD con Server Actions
  3. Migraciones del esquema de la base de datos
  4. Población de bases de datos y connection pooling
← Volver a Next.js 15 Fullstack (App Router + Server Actions)