summaryrefslogtreecommitdiff
path: root/django/db/migrations
Commit message (Expand)AuthorAgeFilesLines
* Fixed #470 -- Added support for database defaults on fields.Ian Foote2023-05-121-0/+2
* Refs #34534 -- Reduced Add/RemoveConstraint and Add/RenameIndex operations wh...Akash Kumar Sen2023-05-091-0/+12
* Fixed #34529, Refs #34525 -- Reduced index operations with Meta.indexes/index...Mariusz Felisiak2023-05-031-0/+65
* Fixed #34528 -- Reduced Add/RemoveIndex operations when optimizing migrations.Mariusz Felisiak2023-05-011-0/+5
* Fixed #34420 -- Corrected the order of imports in generated migration files.Andy Chosak2023-03-201-1/+4
* Fixed #34333 -- Fixed migration operations ordering when adding index/constra...Durval Carvalho2023-03-101-0/+20
* Fixed #34366 -- Reduced AlterField operations when optimizing migrations.Laurent Tramoy2023-02-241-3/+3
* Fixed #34250 -- Fixed renaming model with m2m relation to a model with the sa...DevilsAutumn2023-02-141-14/+6
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-2/+2
* Refs #32528 -- Simplified MigrationAutodetector._sort_migrations().Nick Pope2023-01-191-4/+3
* Fixed #32528 -- Replaced django.utils.topological_sort with graphlib.Topologi...Nick Pope2023-01-191-9/+5
* Refs #34233 -- Used types.NoneType.Nick Pope2023-01-181-2/+2
* Fixed #18468 -- Added support for comments on columns and tables.kimsoungryoul2022-12-283-0/+63
* Fixed #34050 -- Replaced invalid chars in migration names with '_'.Adam Johnson2022-09-271-1/+3
* Fixed #33953 -- Reverted "Fixed #33201 -- Made RenameModel operation a noop f...Iuri de Silvio2022-08-261-6/+5
* Fixed #33938 -- Fixed migration crash for m2m with a through model in another...Simon Charette2022-08-251-1/+1
* Fixed #33916 -- Added support for serialization of enum.Flag in migrations.Willem Van Onsem2022-08-251-2/+15
* Refs #27236 -- Reverted "Refs #27236 -- Added generic mechanism to handle the...Mariusz Felisiak2022-07-262-10/+1
* Refs #27236 -- Reverted AlterIndexTogether deprecation.Mariusz Felisiak2022-07-261-8/+0
* Refs #27236 -- Made cosmetic edits to Meta.index_together deprecation.Mariusz Felisiak2022-07-211-2/+8
* Fixed #33848 -- Optimized StateApps.clone().Iuri de Silvio2022-07-161-3/+6
* Fixed #27236 -- Deprecated Meta.index_together in favor of Meta.indexes.David Wobrock2022-07-121-0/+8
* Refs #27236 -- Added generic mechanism to handle the deprecation of migration...David Wobrock2022-07-082-1/+10
* Fixed #31788 -- Fixed migration optimization after altering field to ManyToMa...David Wobrock2022-06-021-2/+3
* Refs #27064 -- Made migrations generate RenameIndex operations when moving in...David Wobrock2022-05-171-0/+47
* Refs #27064 -- Refactored out MigrationAutodetector.create_renamed_fields().David Wobrock2022-05-171-25/+59
* Refs #27064 -- Made migrations generate RenameIndex operations when renaming ...David Wobrock2022-05-161-4/+47
* Fixed #33710 -- Made RenameIndex operation a noop when the old and new name m...David Wobrock2022-05-161-0/+3
* Refs #27064 -- Added RenameIndex migration operation.David Wobrock2022-05-123-0/+170
* Fixed #33509 -- Added "(no-op)" to sqlmigrate output for operations without S...Adam Johnson2022-04-211-10/+12
* Fixed #33605 -- Fixed migration crash when altering RegexValidator to pre-com...Brian Helba2022-04-041-0/+2
* Refs #32365 -- Made migration writer use datetime.timezone.utc.Carlton Gibson2022-03-231-6/+3
* Fixed #33572 -- Implemented CreateModel/AlterModelManagers reduction.Adam Johnson2022-03-111-0/+13
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-074-17/+28
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-0718-849/+1380
* Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak2022-02-031-2/+1
* Fixed #33480 -- Fixed makemigrations crash when renaming field of renamed model.Kirill Safronov2022-02-011-1/+1
* Fixed #33449 -- Fixed makemigrations crash on models without Meta.order_with_...Fabian Büchler2022-01-211-5/+2
* Fixed #33402 -- Optimized multiple AlterFooTogether operations.David Wobrock2022-01-041-1/+12
* Refs #29026 -- Allowed customizing InteractiveMigrationQuestioner's prompt de...Jacob Walls2022-01-031-13/+22
* Fixed #23273 -- Avoided creation of django_migrations table when there are no...Jacob Walls2021-12-301-2/+6
* Fixed #33305 -- Fixed autodetector crash for ForeignKey with hardcoded "to" a...Baptiste Mispelon2021-11-221-1/+1
* Fixed #33234 -- Fixed autodetector crash for proxy models inheriting from non...Mariusz Felisiak2021-11-021-0/+2
* Fixed #33201 -- Made RenameModel operation a noop for models with db_table.Iuri de Silvio2021-10-271-5/+6
* Fixed #31503 -- Made autodetector remove unique/index_together before alterin...David Wobrock2021-10-251-7/+46
* Fixed #33197 -- Made field rename with prior matching db_column change a noop.Simon Charette2021-10-192-2/+23
* Fixed #23953 -- Made makemigrations continue number sequence for squashed mig...Jacob Walls2021-10-151-1/+4
* Fixed #29470 -- Logged makemigrations automatic decisions in non-interactive ...Jacob Walls2021-10-121-0/+32
* Refs #32900 -- Restored '[y/N]' in questioner prompt when merging migrations.Seonghyeon Cho2021-10-111-1/+1
* Fixed #23408 -- Added migrations questioner prompt for adding unique fields w...Jacob Walls2021-10-062-0/+33