From 30a613aff3c283b30377b678f0c2c7969c221639 Mon Sep 17 00:00:00 2001 From: David Vaz Date: Fri, 27 Sep 2019 14:31:58 -0700 Subject: [PATCH] [3.0.x] Doc'd that migrate commmand accepts a unique migration name prefix. Backport of e02f67ef2d03d48128e7a118bf75f0418e24e8ac from master --- docs/ref/django-admin.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 310a11787b..1f76879c23 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -810,8 +810,10 @@ The behavior of this command changes depending on the arguments provided: * `` ``: Brings the database schema to a state where the named migration is applied, but no later migrations in the same app are applied. This may involve unapplying migrations if you have previously - migrated past the named migration. Use the name ``zero`` to migrate all the - way back i.e. to revert all applied migrations for an app. + migrated past the named migration. You can use a prefix of the migration + name, e.g. ``0001``, as long as it's unique for the given app name. Use the + name ``zero`` to migrate all the way back i.e. to revert all applied + migrations for an app. .. warning::