diff options
| author | Dakota Hawkins <dakotahawkins@users.noreply.github.com> | 2018-12-19 06:41:31 -0500 |
|---|---|---|
| committer | Carlton Gibson <carlton.gibson@noumenal.es> | 2018-12-19 12:41:31 +0100 |
| commit | 8d3147e130c4e5638fceb1e6125c040362ce12e8 (patch) | |
| tree | 3e17b6ed50be3466ced3ec73a2745f37f994cebb /docs/ref | |
| parent | b514dc14f4e1c364341f5931b354e83ef15ee12d (diff) | |
Fixed #30031 -- Added --no-header option to makemigrations/squashmigrations.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/django-admin.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 19f1d046fe..e8371897e2 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -776,6 +776,12 @@ Enables fixing of migration conflicts. Allows naming the generated migration(s) instead of using a generated name. The name must be a valid Python :ref:`identifier <python:identifiers>`. +.. django-admin-option:: --no-header + +.. versionadded:: 2.2 + +Generate migration files without Django version and timestamp header. + .. django-admin-option:: --check Makes ``makemigrations`` exit with a non-zero status when model changes without @@ -1156,6 +1162,12 @@ Suppresses all user prompts. Sets the name of the squashed migration. When omitted, the name is based on the first and last migration, with ``_squashed_`` in between. +.. django-admin-option:: --no-header + +.. versionadded:: 2.2 + +Generate squashed migration file without Django version and timestamp header. + ``startapp`` ------------ |
