“rétrogradation à la migration précédente Django” Réponses codées

rétrogradation à la migration précédente Django

If you want to reverse all migrations applied for an app, 
use the name zero:
$ python manage.py migrate books zero
Operations to perform:
  Unapply all migrations: books
Running migrations:
  Rendering model states... DONE
  Unapplying books.0002_auto... OK
  Unapplying books.0001_initial... OK
Crazy Cobra

rétrogradation à la migration précédente Django

Reversing migrations¶
Migrations can be reversed with migrate by passing 
the number of the previous migration.
For example, to reverse migration books.0003:

$ python manage.py migrate books 0002
Operations to perform:
  Target specific migration: 0002_auto, from books
Running migrations:
  Rendering model states... DONE
  Unapplying books.0003_auto... OK
Crazy Cobra

Réponses similaires à “rétrogradation à la migration précédente Django”

Questions similaires à “rétrogradation à la migration précédente Django”

Plus de réponses similaires à “rétrogradation à la migration précédente Django” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code