summaryrefslogtreecommitdiff
path: root/tests/migrations/test_operations.py
AgeCommit message (Expand)Author
2023-02-14[4.2.x] Fixed #34250 -- Fixed renaming model with m2m relation to a model wit...DevilsAutumn
2022-12-28Fixed #18468 -- Added support for comments on columns and tables.kimsoungryoul
2022-12-27Fixed #34217 -- Fixed migration crash when removing check constraints on MySQ...DevilsAutumn
2022-11-17Fixed #28987 -- Fixed altering ManyToManyField when changing to self-referent...DevilsAutumn
2022-09-25Fixed #34027 -- Fixed migrations crash when altering type of char/text fields...David Sanders
2022-08-29Refs #33953 -- Fixed test_rename_model_with_db_table_rename_m2m() crash on SQ...Mariusz Felisiak
2022-08-26Fixed #33953 -- Reverted "Fixed #33201 -- Made RenameModel operation a noop f...Iuri de Silvio
2022-07-26Refs #27236 -- Reverted AlterIndexTogether deprecation.Mariusz Felisiak
2022-07-21Refs #27236 -- Made cosmetic edits to Meta.index_together deprecation.Mariusz Felisiak
2022-07-12Fixed #27236 -- Deprecated Meta.index_together in favor of Meta.indexes.David Wobrock
2022-07-12Refs #27236 -- Split RenameField() tests with unique/index_together.David Wobrock
2022-05-26Fixed #23740 -- Fixed removing unique_together constraint if exists primary k...David Wobrock
2022-05-16Fixed #33710 -- Made RenameIndex operation a noop when the old and new name m...David Wobrock
2022-05-12Refs #27064 -- Added RenameIndex migration operation.David Wobrock
2022-05-05Refs #30581 -- Moved CheckConstraint tests for conditional expressions to mig...Mariusz Felisiak
2022-05-02Fixed #33413 -- Made migrations propage collations to related fields.David Wobrock
2022-02-07Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-01-27Fixed #33462 -- Fixed migration crash when altering type of primary key with ...Mariusz Felisiak
2021-10-27Fixed #33201 -- Made RenameModel operation a noop for models with db_table.Iuri de Silvio
2021-10-18Fixed #33194 -- Fixed migrations when altering a field with functional indexe...Hannes Ljungberg
2021-08-31Fixed #33057 -- Fixed recreation of foreign key constraints in m2m tables whe...Mariusz Felisiak
2021-07-27Refs #32743 -- Fixed recreation of foreign key constraints when altering type...Jordan Bae
2021-07-26Fixed #32743 -- Added foreign key altering when altering type of referenced p...David Wobrock
2021-05-25Fixed #32780 -- Made Add/RemoveConstraint operations a noop for covering/defe...Hannes Ljungberg
2021-04-27Fixed #32686 -- Removed unnecessary semicolon on collected multiline SQL for ...Hannes Ljungberg
2021-04-27Refs #32686 -- Added tests for adding a semicolon when collecting SQL for Run...Hannes Ljungberg
2021-02-23Fixed #30916 -- Added support for functional unique constraints.Hannes Ljungberg
2021-02-19Fixed #32458 -- Made __repr__() for Index and BaseConstraint subclasses more ...Hannes Ljungberg
2021-01-26Fixed #32369 -- Fixed adding check constraints with pattern lookups and expre...Simon Charette
2021-01-13Fixed #26167 -- Added support for functional indexes.Hannes Ljungberg
2020-11-07Removed hardcoded pks in migrations' test_alter_order_with_respect_to.Tim Graham
2020-09-04Fixed #27417 -- Made RenameField operation a noop for field name case changes...Mariusz Felisiak
2020-08-14Fixed #31826 -- Made AlterField operation a noop when adding db_column.Iuri de Silvio
2020-08-13Fixed #31825 -- Made RenameField operation a noop for fields with db_column.Iuri de Silvio
2020-06-04Fixed #30913 -- Added support for covering indexes on PostgreSQL 11+.Hannes Ljungberg
2020-05-28Fixed #31468 -- Allowed specifying migration filename in Operation.Adam Johnson
2020-04-30Fixed #20581 -- Added support for deferrable unique constraints.Ian Foote
2020-04-23Fixed #29224 -- Fixed removing index_together indexes if exists unique_togeth...David Wobrock
2020-04-22Fixed #31499 -- Stored ModelState.fields into a dict.Simon Charette
2020-04-21Refs #30591 -- Adjusted table rebuild for non-pk relationship on SQLite.Simon Charette
2020-04-21Fixed #31064 -- Recreated auto-created many-to-many tables on primary key dat...Simon Charette
2020-04-21Removed redundant import in tests/migrations/test_operations.py.Simon Charette
2020-04-09Made Operation.references_model/references_field require app_label.Simon Charette
2020-02-04Simplified imports from django.db and django.contrib.gis.db.Nick Pope
2020-01-23Refs #31197 -- Added tests for combined expressions in CheckConstraint.check.Mariusz Felisiak
2019-09-11Refs #30591 -- Fixed too long identifier crash in migrations.test_operations ...Mariusz Felisiak
2019-09-11Fixed #30591 -- Fixed recreation of foreign key constraints on MySQL when alt...Adnan Umer
2019-08-19Moved migrations.test_operations.OperationTestBase to migrations.test_base.Mads Jensen
2019-08-02Fixed #30661 -- Added models.SmallAutoField.Nick Pope