summaryrefslogtreecommitdiff
path: root/docs/ref/django-admin.txt
AgeCommit message (Collapse)Author
2015-06-16Fixed #24971 -- Made startapp generate an apps.pyMounir Messelmeni
2015-06-04Fixed #24159 -- Made compilemessages run across all apps.Matthew Somerville
Updated the command to match the documentation, which states it runs over all .po files.
2015-05-21Cosmetic edits and minor corrections to docs/ref/django-admin.txt.garwoodpr
2015-04-27Removed initial data from flush docs since it's removed; refs #24711.Tim Graham
2015-04-25Fixed #24704 -- Clarified system check interaction with runserver.Tim Graham
2015-04-09Fixed #24560 -- Added a --dry-run mode to the createcachetable command.Adam Chainz
2015-03-30Fixed #24550 -- Added migration operation description to sqlmigrate outputMarkus Holtermann
Thanks Tim Graham for the review.
2015-03-20Fixed #24419 -- Added sendtestemail management commandLoek van Gent
2015-03-08Fixed #23407 -- Extended coverage of makemigrations --noinput option.Marten Kenbeek
Changed --noinput option in makemigrations to suppress all user prompts, not just when combined with --merge.
2015-02-22Fixed #24358 -- Corrected code-block directives for console sessions.Sean Wang
2015-02-13Fixed #24184 -- Prevented automatic soft-apply of migrationsMarkus Holtermann
Previously Django only checked for the table name in CreateModel operations in initial migrations and faked the migration automatically. This led to various errors and unexpected behavior. The newly introduced --fake-initial flag to the migrate command must be passed to get the same behavior again. With this change Django will bail out in with a "duplicate relation / table" error instead. Thanks Carl Meyer and Tim Graham for the documentation update, report and review.
2015-02-09Removed docs about unmigrated apps as they are not supported in Django 1.9.Tim Graham
2015-02-01Removed versionadded/changed notes for 1.7.Tim Graham
2015-01-20Fixed #24177 -- Added documentation about database view support in inspectdbFabio C. Barrionuevo da Luz
2015-01-18Removed support for syncing apps without migrations per deprecation timeline.Tim Graham
Kept support for creating models without migrations when running tests (especially for Django's test suite).
2015-01-17Removed dumpdata --natural option and serializers use_natural_keys parameter.Tim Graham
Per deprecation timeline; refs #13252.
2015-01-17Removed usage of deprecated dumpdata options in docs.Tim Graham
2015-01-17Removed the validate management command per deprecation timeline.Tim Graham
2015-01-17Removed support for custom SQL per deprecation timeline.Tim Graham
2015-01-17Removed support for initial_data fixtures per deprecation timeline.Tim Graham
2015-01-17Removed the syncdb command per deprecation timeline.Tim Graham
2015-01-17Removed FastCGI support per deprecation timeline; refs #20766.Tim Graham
2015-01-12Fixed #24118 -- Added --debug-sql option for tests.Marc Tamlyn
Added a --debug-sql option for tests and runtests.py which outputs the SQL logger for failing tests. When combined with --verbosity=2, it also outputs the SQL for passing tests. Thanks to Berker, Tim, Markus, Shai, Josh and Anssi for review and discussion.
2014-12-31Fixed #23359 -- Added showmigrations command to list migrations and plan.Markus Holtermann
Thanks to Collin Anderson, Tim Graham, Gabe Jackson, and Marc Tamlyn for their input, ideas, and review.
2014-12-19Moved version directives to the bottom of the loaddata section.Berker Peksag
2014-11-28Fixed #23728 -- Added the --exit option to makemigrations.Tim Heap
If no changes that need migrations are found, `makemigrations --exit` exits with error code 1.
2014-11-25Fixed typo in docs/ref/django-admin.txtRichard Olsson
2014-11-24Fixed #23742 -- Added an option to reverse tests order.wrwrwr
This is useful for debugging side effects affecting tests that are usually executed before a given test. Full suite and pair tests sort cases more or less deterministically, thus some test cross-dependencies are easier to reveal by reversing the order. Thanks Preston Timmons for the review.
2014-11-24Fixed spelling in docs/ref/django-admin.txt.Tim Graham
2014-11-19Fixed #23410 -- Avoided unnecessary rollbacks in related apps when migrating ↵Carl Meyer
backwards.
2014-11-18Fixed #18714 -- Added 'fuzzy' compilemessages optionAnton Baklanov
2014-11-15Fixed #23808 -- Documented that migrations table is created when using ↵Andreas Madsack
runserver without migrating first.
2014-10-30Fixed #18731 -- Added an example about customizing "makemessages" command.Berker Peksag
Thanks claudp for the suggestion and review.
2014-09-24Corrected --noinput docs for makemigrations; refs #23407.Tim Graham
2014-09-12Fixed #17101 -- Integrated django-secure and added check --deploy optionTim Graham
Thanks Carl Meyer for django-secure and for reviewing. Thanks also to Zach Borboa, Erik Romijn, Collin Anderson, and Jorge Carleitao for reviews.
2014-09-02Fixed #23302 -- Added --name/-n option to makemigrations commandRaffaele Salmaso
2014-08-27Documented --database option for migrate.Tim Graham
Thanks Mike O'Connor for the reporty.
2014-08-19Fixed #5726 -- Documented that inspectdb doesn't detect defaults.Tim Graham
2014-08-18Fixed #23303 -- Added BEGIN and COMMIT statements to the output of sqlmigrate.Baptiste Mispelon
2014-08-12Fixed #22985 -- Made call_command accept option name parameterClaude Paroz
Thanks giulettamasina for the report and Tim Graham for the review.
2014-08-05Fixed broken links in docs.Tim Graham
2014-07-30Fixed #23067 -- Updated docs to use django-adminChristoph Heer
2014-07-28Fixed #23102 -- Documented that sql* commands now respect allow_migrate().Gabriel Muñumel
2014-07-27Fixed #23062 -- Documented how to create superuser.Aymeric Augustin
Patch by Tim Graham. Thanks areski for the review.
2014-07-26Fixed #23097 -- Switched to new octal format in docsDavid Hoffman
2014-07-08Document -l as well as --list on migrateAndrew Godwin
2014-07-08Fixed #21832 -- Updated prompt, tests, and docs to show that USERNAME_FIELD ↵Anubhav Joshi
supports FK after 9bc2d76. Also added get_input_data() hook in createsuperuser. Thanks Chris Jerdonek and Tim Graham for review.
2014-07-06Document --fake and --list on migrate commandAndrew Godwin
2014-06-20Fixed #22862 -- Added --noinput option to makemigrations.Huu Nguyen
Thanks artortenburger for the report.
2014-06-10Fixed #22801 -- Added 'www.' to diveintopython.net linksMaxime Turcotte