summaryrefslogtreecommitdiff
path: root/tests/migrations/test_operations.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #33710 -- Made RenameIndex operation a noop when the old and new name m...David Wobrock2022-05-161-0/+5
* Refs #27064 -- Added RenameIndex migration operation.David Wobrock2022-05-121-0/+143
* Refs #30581 -- Moved CheckConstraint tests for conditional expressions to mig...Mariusz Felisiak2022-05-051-0/+42
* Fixed #33413 -- Made migrations propage collations to related fields.David Wobrock2022-05-021-0/+117
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-14/+33
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-1088/+2187
* Fixed #33462 -- Fixed migration crash when altering type of primary key with ...Mariusz Felisiak2022-01-271-0/+67
* Fixed #33201 -- Made RenameModel operation a noop for models with db_table.Iuri de Silvio2021-10-271-0/+22
* Fixed #33194 -- Fixed migrations when altering a field with functional indexe...Hannes Ljungberg2021-10-181-0/+39
* Fixed #33057 -- Fixed recreation of foreign key constraints in m2m tables whe...Mariusz Felisiak2021-08-311-0/+22
* Refs #32743 -- Fixed recreation of foreign key constraints when altering type...Jordan Bae2021-07-271-0/+22
* Fixed #32743 -- Added foreign key altering when altering type of referenced p...David Wobrock2021-07-261-0/+51
* Fixed #32780 -- Made Add/RemoveConstraint operations a noop for covering/defe...Hannes Ljungberg2021-05-251-4/+11
* Fixed #32686 -- Removed unnecessary semicolon on collected multiline SQL for ...Hannes Ljungberg2021-04-271-0/+1
* Refs #32686 -- Added tests for adding a semicolon when collecting SQL for Run...Hannes Ljungberg2021-04-271-0/+14
* Fixed #30916 -- Added support for functional unique constraints.Hannes Ljungberg2021-02-231-0/+93
* Fixed #32458 -- Made __repr__() for Index and BaseConstraint subclasses more ...Hannes Ljungberg2021-02-191-1/+1
* Fixed #32369 -- Fixed adding check constraints with pattern lookups and expre...Simon Charette2021-01-261-0/+14
* Fixed #26167 -- Added support for functional indexes.Hannes Ljungberg2021-01-131-0/+71
* Removed hardcoded pks in migrations' test_alter_order_with_respect_to.Tim Graham2020-11-071-2/+6
* Fixed #27417 -- Made RenameField operation a noop for field name case changes...Mariusz Felisiak2020-09-041-0/+22
* Fixed #31826 -- Made AlterField operation a noop when adding db_column.Iuri de Silvio2020-08-141-0/+53
* Fixed #31825 -- Made RenameField operation a noop for fields with db_column.Iuri de Silvio2020-08-131-0/+42
* Fixed #30913 -- Added support for covering indexes on PostgreSQL 11+.Hannes Ljungberg2020-06-041-0/+124
* Fixed #31468 -- Allowed specifying migration filename in Operation.Adam Johnson2020-05-281-0/+38
* Fixed #20581 -- Added support for deferrable unique constraints.Ian Foote2020-04-301-0/+158
* Fixed #29224 -- Fixed removing index_together indexes if exists unique_togeth...David Wobrock2020-04-231-0/+23
* Fixed #31499 -- Stored ModelState.fields into a dict.Simon Charette2020-04-221-31/+43
* Refs #30591 -- Adjusted table rebuild for non-pk relationship on SQLite.Simon Charette2020-04-211-1/+13
* Fixed #31064 -- Recreated auto-created many-to-many tables on primary key dat...Simon Charette2020-04-211-0/+28
* Removed redundant import in tests/migrations/test_operations.py.Simon Charette2020-04-211-4/+7
* Made Operation.references_model/references_field require app_label.Simon Charette2020-04-091-21/+21
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-041-4/+4
* Refs #31197 -- Added tests for combined expressions in CheckConstraint.check.Mariusz Felisiak2020-01-231-0/+28
* Refs #30591 -- Fixed too long identifier crash in migrations.test_operations ...Mariusz Felisiak2019-09-111-2/+2
* Fixed #30591 -- Fixed recreation of foreign key constraints on MySQL when alt...Adnan Umer2019-09-111-0/+45
* Moved migrations.test_operations.OperationTestBase to migrations.test_base.Mads Jensen2019-08-191-151/+1
* Fixed #30661 -- Added models.SmallAutoField.Nick Pope2019-08-021-10/+38
* Fixed #30412 -- Fixed crash when adding check constraints with OR'ed conditio...can2019-04-301-0/+23
* Fixed #30408 -- Fixed crash when adding check constraints with LIKE operator ...Simon Charette2019-04-301-0/+43
* Made test table cleanup in OperationTestBase more robust.Paveł Tyślacki2019-01-281-20/+18
* Fixed #30062 -- Added support for unique conditional constraints.Paveł Tyślacki2019-01-121-0/+131
* Fixed #29934 -- Added sqlparse as a require dependency.Tim Graham2018-11-091-9/+0
* Refs #29868 -- Prevented name collisions between test constraints on Oracle.Simon Charette2018-10-301-9/+13
* Fixed #29868 -- Retained database constraints on SQLite table rebuilds.Simon Charette2018-10-291-15/+44
* Refs #11964 -- Removed raw SQL from and cleaned up constraint operation tests.Simon Charette2018-10-241-51/+22
* Refs #11964 -- Changed CheckConstraint() signature to use keyword-only argume...Simon Charette2018-10-021-3/+3
* Refs #24424 -- Added regression tests for MTI-inheritance model removal.Simon Charette2018-07-251-0/+23
* Allowed RemoveField operations to be optimized through.Simon Charette2018-07-111-8/+1
* Relaxed FieldOperation.references_field remote field checking.Simon Charette2018-07-111-0/+58