0Pricing
Django Academy · Lección

sqlmigrate e inspección de SQL

Vea el SQL sin procesar que ejecutará una migración

sqlmigrate e inspección de SQL es una lección gratuita de Django Academy en CoddyKit. Esta es la lección 4 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 Django Academy, y tu progreso se sincroniza en la web y la app de CoddyKit. El curso de Django Academy incluye 4 lecciones en total.

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

See the Real SQL

Migrations are Python, but the database speaks SQL. The sqlmigrate command shows the exact SQL a migration will run.

How to Run It

Give sqlmigrate an app label and a migration number, and it prints the SQL without applying anything.

python manage.py sqlmigrate blog 0002

It Does Not Apply

sqlmigrate is read-only. It prints the statements so you can review them, never touching your database.

Reading CREATE TABLE

An initial migration shows a CREATE TABLE with each column, type, and constraint laid out in plain SQL.

CREATE TABLE "blog_post" (
  "id" integer PRIMARY KEY AUTOINCREMENT,
  "title" varchar(200) NOT NULL
);

Reading ALTER TABLE

Adding a field shows an ALTER TABLE ... ADD COLUMN, the precise change Django will make to the existing table.

ALTER TABLE "blog_post"
  ADD COLUMN "published" bool NOT NULL DEFAULT 0;

Why Inspect First

Previewing SQL catches surprises early, like an unexpected rebuild or a costly change on a huge table.

Dialect Matters

The SQL reflects your configured database. Postgres, SQLite, and MySQL each produce slightly different statements.

Find the Number

Need the migration number? Run showmigrations first to list them, then pass the one you want to sqlmigrate.

python manage.py showmigrations blog

Backwards SQL

Add the --backwards flag to see the SQL Django would run to reverse a migration, useful before rolling back.

python manage.py sqlmigrate blog 0002 --backwards

A Learning Tool

sqlmigrate is a great way to learn how the ORM maps your models to tables, columns, indexes, and constraints.

Review Before Production

On important deploys, read the SQL for risky steps so a slow migration never locks your live tables unexpectedly.

Quick Check

What does python manage.py sqlmigrate do?

Recap

With sqlmigrate you preview the exact SQL behind any migration, forwards or backwards, so deploys hold no surprises. 🔍

Preguntas frecuentes

¿La lección «sqlmigrate e inspección de SQL» es gratis?

Sí — el texto completo de «sqlmigrate e inspección de SQL» 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 Django Academy, actualiza a CoddyKit PRO. El curso de Django Academy incluye 4 lecciones en total.

¿Qué aprenderé en «sqlmigrate e inspección de SQL»?

Vea el SQL sin procesar que ejecutará una migración Practicas Django Academy 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 Django Academy?

No se requiere experiencia previa. Django Academy 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 4 de 4.

¿Cuánto tiempo toma la lección «sqlmigrate e inspección de SQL»?

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 Django Academy?

Sí. Cada lección de Django Academy 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. makemigrations frente a migrate
  2. Leer un archivo de migración
  3. Cambiar un modelo y volver a migrar
  4. sqlmigrate e inspección de SQL
← Volver a Django Academy