summaryrefslogtreecommitdiff
path: root/docs/howto/initial-data.txt
AgeCommit message (Collapse)Author
2025-08-25Refs #36485 -- Rewrapped docs to 79 columns line length.David Smith
Lines in the docs files were manually adjusted to conform to the 79 columns limit per line (plus newline), improving readability and consistency across the content.
2025-04-15Fixed #36311 -- Unified spelling of "hardcode" and its variants in docs.Ahmed Nassar
Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
2024-08-28Fixed typos in docs/howto/initial-data.txt.Jacob Walls
2022-11-02Fixed #34054 -- Created a new fixtures topic.Filip Lajszczak
Moved material from django-admin document into a new document, and added new material. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2022-09-25Fixed #26975 -- Clarified how Django looks for fixture files.Filip Łajszczak
Co-Authored-By: Daniel Brotsky <dev@brotsky.com>
2022-04-28Removed hyphen from pre-/re- prefixes.David
"prepopulate", "preload", and "preprocessing" are already in the spelling_wordlist. This also removes hyphen from double "e" combinations with "pre" and "re", e.g. preexisting, preempt, reestablish, or reenter. See also: - https://ahdictionary.com/word/search.html?q=rerun - https://ahdictionary.com/word/search.html?q=recreate - https://ahdictionary.com/word/search.html?q=predetermined - https://ahdictionary.com/word/search.html?q=reuse - https://ahdictionary.com/word/search.html?q=reopening
2021-07-13Refs #32880 -- Made some titles consistent in how-to documents.Daniele Procida
This retitles documents for consistency, since some already (correctly) begin "How to...".
2019-09-06Fixed #30573 -- Rephrased documentation to avoid words that minimise the ↵Tobias Kunze
involved difficulty. This patch does not remove all occurrences of the words in question. Rather, I went through all of the occurrences of the words listed below, and judged if they a) suggested the reader had some kind of knowledge/experience, and b) if they added anything of value (including tone of voice, etc). I left most of the words alone. I looked at the following words: - simply/simple - easy/easier/easiest - obvious - just - merely - straightforward - ridiculous Thanks to Carlton Gibson for guidance on how to approach this issue, and to Tim Bell for providing the idea. But the enormous lion's share of thanks go to Adam Johnson for his patient and helpful review.
2018-12-27Fixed broken links to PyYAML page.CHI Cheng
2018-09-10Refs #20910 -- Replaced snippet directive with code-block.Curtis Maloney
2018-03-08Fixed #29165 -- Clarified how to load initial data with migrations.Tim Graham
2018-01-07Updated various links in docs to use HTTPS.Mariusz Felisiak
2016-11-06Fixed #27133 -- Doc'd how to provide initial data with migrations.Krzysztof Żuraw
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
2014-12-30Revert "Updated some docs for the delayed deprecation of legacy table ↵Tim Graham
creation; refs #22340." This reverts commit a2e3c9694823d6d451d6dd234e9d416600aacc68. The deprecation was moved back to 1.9 in 61da5f3f02f34810aaa6fcddac3808318a5b95c4.
2014-09-21Fixed #23530 -- Specified PyYAML requirement in initial-data.txtClaude Paroz
Thanks aks for the report.
2014-06-11Added link to data migrations in initial data deprecation noteGreg Chapple
2014-05-07Updated some docs for the delayed deprecation of legacy table creation; refs ↵Tim Graham
#22340.
2014-04-17Fixed #22444 -- Marked initial SQL/fixture loading as deprecated.Tim Graham
Thanks Karen Tracey for the report.
2014-04-16Revert "Fixed #22401 -- Deprecated regular expression parsing of initial SQL ↵Tim Graham
in favor of installing sqlparse." This reverts commit 071c9337750b296d198cced56f3ffad0e176afb6. This introduced a regression on MySQL and custom SQL is deprecated.
2014-04-09Fixed #22401 -- Deprecated regular expression parsing of initial SQL in ↵julien 'pouete' Godin
favor of installing sqlparse.
2013-12-28Used app_label instead of appname.Aymeric Augustin
The last component of the dotted path to the application module is consistently referenced as the application "label". For instance it's AppConfig.label. appname could be confused with AppConfig.name, which is the full dotted path.
2013-11-21Fixed #21479 -- Favor 'migrate' over 'syncdb' in the docs.Loic Bistuer
2013-08-20Fixed #20933 -- Allowed loaddata to load fixtures from relative paths.Florian Apolloner
2013-07-27Fixed a number of minor misspellings.Julien Phalip
2012-12-24Fixed links to DATABASE ENGINE setting. refs #19516Tim Graham
2012-07-15Fixed #18626 -- rst syntax collision.Aymeric Augustin
2012-04-11Fixed #18099 -- corrected a typo in the initial data docs. Thanks to ↵Alex Gaynor
Bradley Ayers for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17895 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-31Removed the deprecated reset and sqlreset management commands.Aymeric Augustin
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17842 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-03-02Edited stuff from [17543] to [17629]Adrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17630 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2012-02-19Fixed #17166 -- Documented how FIXTURE_DIRS works in the inital data how-to, ↵Aymeric Augustin
and edited related bits in the settings reference. Performed minor edits for consistency while I was there. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17558 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-04-17Fixed #15822 -- Removed references to the v1 postgresql backend (which has ↵Adrian Holovaty
been removed). Thanks for the patch, aaugustin git-svn-id: http://code.djangoproject.com/svn/django/trunk@16034 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-01-18Refs #14661 -- Clarified the handling of initial data injected via custom SQL.Russell Keith-Magee
This is BACKWARDS INCOMPATIBLE CHANGE for anyone relying on SQL-injected initial data in a test case. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15239 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-08-19Fixed #14141: docs now use the :doc: construct for links between documents.Jacob Kaplan-Moss
Thanks, Ramiro Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13608 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
This monster of a patch is the result of Alex Gaynor's 2009 Google Summer of Code project. Congratulations to Alex for a job well done. Big thanks also go to: * Justin Bronn for keeping GIS in line with the changes, * Karen Tracey and Jani Tiainen for their help testing Oracle support * Brett Hoerner, Jon Loyens, and Craig Kimmerer for their feedback. * Malcolm Treddinick for his guidance during the GSoC submission process. * Simon Willison for driving the original design process * Cal Henderson for complaining about ponies he wanted. ... and everyone else too numerous to mention that helped to bring this feature into fruition. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11952 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-04-03Fixed a whole bunch of small docs typos, errors, and ommissions.Jacob Kaplan-Moss
Fixes #8358, #8396, #8724, #9043, #9128, #9247, #9267, #9267, #9375, #9409, #9414, #9416, #9446, #9454, #9464, #9503, #9518, #9533, #9657, #9658, #9683, #9733, #9771, #9835, #9836, #9837, #9897, #9906, #9912, #9945, #9986, #9992, #10055, #10084, #10091, #10145, #10245, #10257, #10309, #10358, #10359, #10424, #10426, #10508, #10531, #10551, #10635, #10637, #10656, #10658, #10690, #10699, #19528. Thanks to all the respective authors of those tickets. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10371 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-03-24Fixed #10592 -- Corrected typo in initial-data howto. Thanks to Paul Menzel.Russell Keith-Magee
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10145 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-12-07Fixed #9731 -- Typo fix in docs.Malcolm Tredinnick
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9578 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-12Fixed #9572 -- Corrected some documentation that misleadingly gave the ↵Russell Keith-Magee
extension for YAML fixtures as YML. Thanks to django@i-sh.me.uk for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9401 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-06Fixed #9518 -- Corrected example JSON snippet in fixture documentation. ↵Russell Keith-Magee
Thanks to claude@2xlibre.net for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9355 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-28Fixed #8531: Corrected a typo in a sample YAML fixture. Thanks to amiroff ↵Russell Keith-Magee
for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8657 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-23Massive reorganization of the docs. See the new docs online at ↵Jacob Kaplan-Moss
http://docs.djangoproject.com/. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8506 bcc190cf-cafb-0310-a4f2-bffc1f526a37