summaryrefslogtreecommitdiff
path: root/docs/topics/migrations.txt
Commit message (Collapse)AuthorAgeFilesLines
* Removed versionadded/changed annotations for 3.2.Mariusz Felisiak2021-09-201-5/+0
|
* Refs #32956 -- Changed "afterwards" to "afterward" in docs and comments.David Smith2021-07-271-1/+1
| | | | | | This also removes unnecessary comments with the previous spelling. AP Stylebook has a short entry to advise the preferred spelling for "en-us". "Afterwards" is preferred in British English.
* Fixed typos in comments and docs.David Sanders2021-05-291-1/+1
|
* Fixed #26962 -- Doc'd running migrations in transactions.Caio Ariede2020-10-291-0/+21
|
* Fixed #31529 -- Added support for serialization of pathlib.Path/PurePath and ↵Nick Pope2020-06-241-0/+10
| | | | os.PathLike in migrations.
* Improved docs on migration reversibility. (#12619)Adam Johnson2020-03-251-5/+24
| | | | | | - Clarify reversibility for RunSQL and RunPython operations. - Add example for migrate with irreversible migration. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
* Fixed #30955 -- Doc'd that only concrete base models are stored in ↵Shipeng Feng2019-11-081-5/+5
| | | | | | historical models bases. Abstract models are removed from bases when generating historical model state since 6436f1fad9ce51f18735106ac75aeea3d6d1f310.
* Fixed #30597 -- Clarified how to unapply migrations.David Vaz2019-09-271-0/+24
|
* Refs #27910 -- Doc'd support for enumeration types serialization in migrations.Mariusz Felisiak2019-09-241-0/+1
|
* Refs #30350 -- Doc'd support for range serialization in migrations.Mariusz Felisiak2019-09-241-1/+1
|
* Removed versionadded/changed annotations for 2.2.Mariusz Felisiak2019-09-101-6/+0
|
* Fixed #30573 -- Rephrased documentation to avoid words that minimise the ↵Tobias Kunze2019-09-061-31/+28
| | | | | | | | | | | | | | | | | | | | | | | 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.
* Fixed #30184 -- Removed ellipsis characters from shell output strings.Dan Davis2019-02-131-2/+2
| | | | Partially reverted 50b8493581fea3d7137dd8db33bac7008868d23a (refs #29654) to avoid a crash when the user shell doesn't support non-ASCII characters.
* Refs #30033 -- Doc'd change regarding apps without migrations depending on ↵Tim Graham2019-01-281-0/+4
| | | | | | | apps with migrations. The addition of self.connection.check_constraints() in 7289874adceec46b5367ec3157cdd10c711253a0 is the cause.
* Removed versionadded/changed annotations for 2.1.Tim Graham2019-01-171-4/+0
|
* Refs #29738 -- Allowed registering serializers with MigrationWriter.can2019-01-111-0/+29
|
* Updated docs for fast column creation with defaults in PostgreSQL 11.Damian Dimmich2018-11-261-2/+3
|
* Fixed #29814 -- Added support for NoneType serialization in migrations.Patrik Sletmo2018-10-111-1/+5
|
* Refs #29654 -- Replaced three dots with ellipsis character in output strings.Claude Paroz2018-08-221-2/+2
|
* Removed code terms from docs/spelling_wordlist.Tim Graham2018-07-311-3/+4
|
* Add clarifying section about historical migration modelsAndrew Godwin2018-05-151-2/+13
|
* Fixed #28870 -- Added support for functools.partialmethod serialization in ↵Sergey Fedoseev2017-12-061-2/+6
| | | | migrations.
* Removed versionadded/changed annotations for 1.11.Tim Graham2017-09-221-4/+0
|
* Fixed #28363 -- Allowed naming the migration generated by squashmigrations.Melvyn Sopacua2017-07-261-0/+3
|
* Refs #23919 -- Stopped inheriting from object to define new style classes.Mariusz Felisiak2017-06-261-1/+1
| | | Tests and docs complement to cecc079168e8669138728d31611ff3a1e7eb3a9f.
* Made docs/topics/migrations.txt use single quotes consistently.Markus Amalthea Magnuson2017-05-221-5/+5
|
* Removed unexpected initial attribute in data migration examples.Stefano Rivera2017-03-251-2/+0
| | | Inadvertently added in db97a8849519a3933bf4abd2184efd68ebc21965.
* Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis2017-01-261-1/+1
|
* Removed unused imports in example migrations.Arkadiusz Adamski2017-01-211-2/+2
|
* Refs #23919 -- Removed docs references to long integers.Tim Graham2017-01-191-1/+1
|
* Refs #23919 -- Removed Python 2 notes in docs.Tim Graham2017-01-181-19/+1
|
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-26/+0
|
* Removed versionadded/changed annotations for 1.10.Tim Graham2017-01-171-9/+0
|
* Refs #24109 -- Doc'd the elidable feature in squashing migrations docs.Ed Morley2017-01-171-2/+2
|
* Fixed incorrect word choice in docs/topics/migrations.txt.Mitchel Humpherys2016-11-161-1/+1
|
* Fixed #27378 -- Added support for serialization of uuid.UUID in migrations.Maxime Lorant2016-11-061-0/+5
| | | Thanks Yuriy Korobko for the initial patch and Tobias McNulty for review.
* Adjusted documentation of migration related commands.Krzysztof Gogolewski2016-11-051-3/+4
|
* Doc'd how to remove old references in migration files.Tim Graham2016-09-021-0/+3
|
* Refs #25850, #27142, #27110 -- Documented migration history consistency checks.Shai Berger2016-09-011-0/+20
|
* Removed versionadded/changed annotations for 1.9.Tim Graham2016-05-201-7/+0
|
* Fixed #26124 -- Added missing code formatting to docs headers.rowanv2016-02-011-2/+2
|
* Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus2016-01-221-23/+23
|
* Fixed #23868 -- Added support for non-unique django-admin-options in docs.Tim Graham2016-01-141-13/+12
| | | | | | | Also documented missing short command line options to fix #24134. This bumps the minimum sphinx version required to build the docs to 1.3.4. Thanks Simon Charette for review.
* Added missing step to transitioning squashed migrations.Jarek Glowacki2016-01-041-5/+6
|
* Fixed #25936 -- Added showmigrations to migrations topic guide.Mads Jensen2015-12-221-0/+2
|
* Fixed #25063 -- Added path to makemigration's output of migration file.Niels Van Och2015-12-181-1/+1
|
* Fixed #25807 -- Instructed the migration writer about lazy objects.Simon Charette2015-11-261-1/+3
| | | | | Thanks to Trac alias mrgaolei for the report, Baptiste for the confirmation and Tim for the review.
* Fixed #25764 -- Added support for serialization of enum.Enum in migrations.Andrei Fokau2015-11-191-0/+5
| | | | Thanks Tim Graham for the review.
* Removed versionadded/changed annotations for 1.8.Tim Graham2015-09-231-54/+0
|
* Fixed #25390 -- Allowed specifying a start migration in squashmigrationsMarkus Holtermann2015-09-191-1/+1
| | | | Thanks Tim Graham for the review.