summaryrefslogtreecommitdiff
path: root/tests/schema
Commit message (Expand)AuthorAgeFilesLines
* Fixed #31106 -- Fixed migrations crash on PostgreSQL 10+ when adding FK const...Mariusz Felisiak2019-12-231-0/+37
* Used more specific unittest assertions in tests.Nick Pope2019-10-291-10/+10
* Refs #28816 -- Prevented silencing data loss when decreasing CharField.max_le...Hasan Ramezani2019-10-171-0/+48
* Fixed #30800 -- Fixed migrations crash when altering a field with custom db_t...Mariusz Felisiak2019-09-251-0/+20
* Refs #27338 -- Added tests for altering CharField with primary_key=True to Au...Mariusz Felisiak2019-09-111-0/+18
* Made SchemaTests.test_alter_db_table_case run only on backends where table na...Hasan Ramezani2019-09-051-0/+1
* Fixed typos in test names and a comment.Min ho Kim2019-08-231-1/+1
* Fixed #30661 -- Added models.SmallAutoField.Nick Pope2019-08-021-1/+46
* Refs #30664 -- Fixed migrations crash when altering AutoField/BigAutoField wi...Mariusz Felisiak2019-08-011-0/+20
* Fixed #30664 -- Fixed migrations crash when altering table on SQLite or alter...Ngalim Siregar2019-08-011-0/+18
* Fixed #30593 -- Added support for check constraints on MariaDB 10.2+.Hasan Ramezani2019-07-191-2/+2
* Changed django.db.models.indexes.Index imports to django.db.models.Index.Mariusz Felisiak2019-07-081-2/+1
* Fixed #28816 -- Prevented silencing data loss when decreasing CharField.max_l...Hasan Ramezani2019-05-211-0/+16
* Fixed #30266 -- Kept a sequence owner when altering an AutoField/BigAutoField...Dolan Antenucci2019-04-081-0/+23
* Refs #30172 -- Prevented removing a model Meta's index/unique_together from r...Paveł Tyślacki2019-03-172-4/+111
* Refs #30172 -- Prevented removing a field's check or unique constraint from r...Paveł Tyślacki2019-03-172-4/+107
* Fixed #30183 -- Added introspection of inline SQLite constraints.Paveł Tyślacki2019-03-131-2/+10
* Fixed #30108 -- Allowed adding foreign key constraints in the same statement ...Dan Tao2019-01-291-0/+21
* Fixed #30060 -- Moved SQL generation for indexes and constraints to SchemaEdi...Paveł Tyślacki2019-01-011-13/+7
* Refs #30033 -- Fixed schema's test_m2m_rename_field_in_target_model test fail...Tim Graham2018-12-261-7/+8
* Fixed #29949 -- Refactored db introspection identifier converters.Mariusz Felisiak2018-11-211-26/+15
* Refs #29641 -- Refactored database schema constraint creation.Simon Charette2018-11-131-14/+14
* Fixed #29547 -- Added support for partial indexes.Mads Jensen2018-10-291-0/+1
* Fixed #29778 -- Fixed quoting of unique index names.Oleg2018-09-251-0/+12
* Fixed #29496 -- Fixed crash on Oracle when converting a non-unique field to p...Mariusz Felisiak2018-06-172-1/+15
* Replaced django.test.utils.patch_logger() with assertLogs().Claude Paroz2018-05-072-14/+12
* Fixed schema test failure when running tests in reverse.Tim Graham2018-04-121-0/+1
* Fixed #29193 -- Prevented unnecessary foreign key drops when altering a uniqu...Jeremy Bowman2018-04-111-0/+34
* Tested altering a unique field when a reverse M2M relation exists.Jeremy Bowman2018-04-111-1/+37
* Refs #29227 -- Made inspectdb generate BooleanField(null=True) rather than Nu...Tim Graham2018-03-201-4/+1
* Fixed #29103 -- Removed bad 'b'-prefix added by MySQL's SchemaEditor.quote_va...Claude Paroz2018-03-171-2/+2
* Moved SchemaLoggingTest to tests/schema.Tim Graham2018-03-141-0/+20
* Fixed #28542 -- Fixed deletion of primary key constraint if the new field is ...Tim Martin2018-01-131-14/+30
* Refs #28930 -- Simplified schemas test with any().Tim Graham2018-01-021-8/+2
* Fixed #28884 -- Fixed crash on SQLite when renaming a field in a model refere...Simon Charette2017-12-221-1/+99
* Fixed #28893 -- Removed unnecessary dict.items() calls.Tim Graham2017-12-061-5/+5
* Refs #28876 -- Fixed incorrect foreign key constraint name for models with qu...Mariusz Felisiak2017-12-051-0/+22
* Fixed #28849 -- Fixed referenced table and column rename on SQLite.Simon Charette2017-12-011-5/+45
* Fixed #28792 -- Fixed index name truncation of namespaced tables.Simon Charette2017-11-141-0/+15
* Fixed #28552 -- Dropped support for MySQL 5.5.Tim Graham2017-09-251-2/+0
* Refs #23919 -- Replaced usage of django.utils.functional.curry() with functoo...Sergey Fedoseev2017-09-061-2/+3
* Fixed #14204 -- Enforced SQLite foreign key constraints.Claude Paroz2017-07-111-1/+1
* Fixed #28298 -- Prevented a primary key alteration from adding a foreign key ...Josh Schneier2017-06-221-1/+32
* Refs #25530 -- Deleted deferred SQL references on delete operation.Simon Charette2017-06-211-5/+17
* Refs #25530 -- Renamed deferred SQL references on rename operation.Simon Charette2017-06-211-0/+29
* Refs #25530 -- Changed _create_index_name to take a table as first parameter.Simon Charette2017-06-201-1/+1
* Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne2017-06-011-1/+1
* Fixed #26682 -- Added support for Oracle identity columns.Mariusz Felisiak2017-06-011-3/+43
* Simplified schema.tests with assertForeignKeyExists()/assertForeignKeyNotExis...Mariusz Felisiak2017-05-241-131/+39
* Fixed #27860 -- Dropped varchar_pattern_ops/text_pattern_ops index before alt...Mariusz Felisiak2017-05-242-8/+59