From e98d303562a50c57b55bbe2d4ebdec76f6624770 Mon Sep 17 00:00:00 2001 From: Moayad Mardini Date: Sat, 24 May 2014 20:31:34 +0300 Subject: [PATCH] Fixed #22692 -- Added docs for `makemigrations` two command options. Added documentation about `--dry-run` and `--merge`. --- docs/ref/django-admin.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index fe1d8dbc38..d3c3177858 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -660,6 +660,15 @@ for advanced users and should not be used unless you are familiar with the migration format, migration operations, and the dependencies between your migrations. +.. django-admin-option:: --dry-run + +The ``--dry-run`` option shows what migrations would be made without +actually writing any migrations files to disk. + +.. django-admin-option:: --merge + +The ``--merge`` option enables fixing of migration conflicts. + migrate [ []] ---------------------------------------