summaryrefslogtreecommitdiff
path: root/tests/schema/models.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #27236 -- Moved models with Meta.index_together inside of test methods.David Wobrock2022-06-031-18/+0
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-4/+4
* Fixed #32503 -- Fixed altering BLOB/TEXT field to non-nullable with default o...Yuekui Li2021-05-211-0/+1
* Added missing Meta.apps to a schema model.Tim Graham2020-03-231-0/+1
* Refs #30172 -- Prevented removing a model Meta's index/unique_together from r...Paveł Tyślacki2019-03-171-0/+18
* Refs #30172 -- Prevented removing a field's check or unique constraint from r...Paveł Tyślacki2019-03-171-0/+7
* Fixed #29496 -- Fixed crash on Oracle when converting a non-unique field to p...Mariusz Felisiak2018-06-171-0/+1
* Fixed #27860 -- Dropped varchar_pattern_ops/text_pattern_ops index before alt...Mariusz Felisiak2017-05-241-0/+7
* Fixed #27859 -- Ignored db_index for TextField/BinaryField on Oracle and MySQL.Mariusz Felisiak2017-05-231-0/+7
* Fixed #28052 -- Prevented dropping Meta.indexes when changing db_index to False.Markus Holtermann2017-05-011-0/+7
* Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz2017-01-181-2/+0
* Refs #26384 -- Isolated a test model in schema tests.Simon Charette2016-12-231-0/+3
* Fixed #25694 -- Removed incorrect _uniq suffix on index names during migrations.Jon Dufresne2016-06-291-0/+1
* Fixed #26384 -- Fixed renaming the PK on a model with a self-referential FK o...Alex Hill2016-03-291-0/+5
* Fixed #21127 -- Started deprecation toward requiring on_delete for ForeignKey...Flavio Curella2015-07-271-5/+8
* Fixed #25128 -- Fixed SQLite SchemaEditor crash when adding a ForeignObject f...Tim Graham2015-07-151-0/+8
* Fixed #24972 -- Fixed removing unique_together indexes on MySQL.Adam Brenecki2015-06-151-0/+9
* Fixed #24893 -- Fixed lack of unique constraint when changing a field from pr...Tim Graham2015-06-021-0/+1
* Fixed #24892 -- Fixed quoting of SQL when renaming a field to AutoField in Po...Tim Graham2015-06-021-0/+8
* Fixed #24817 -- Prevented loss of null info in MySQL field renaming.Andriy Sokolovskiy2015-05-281-0/+8
* Fixed #24658 -- Added missing Meta attribute in schema testsClaude Paroz2015-04-191-0/+3
* Cleaned up schema testsMarkus Holtermann2015-02-051-69/+21
* Fixed #24163 -- Removed unique constraint after index on MySQLMarkus Holtermann2015-01-191-0/+10
* Fixed #23920 -- Fixed MySQL crash when adding blank=True to TextField.Tim Graham2014-12-041-0/+4
* Fixed #23738 -- Allowed migrating from NULL to NOT NULL with the same default...Markus Holtermann2014-10-311-0/+8
* Fixed #23264: Schema backends honour db_constraintAndrew Godwin2014-08-091-0/+9
* Fixed #23009: Shorten FK identifiers in add_field and make consistentAndrew Godwin2014-07-211-1/+9
* Fixed #22476: Couldn't alter attributes on M2Ms with through= setAndrew Godwin2014-05-081-0/+16
* Fixed #22183: Through M2Ms now correctly handledAndrew Godwin2014-03-081-0/+15
* Amend test table name so it doesn't clash.Ramiro Morales2013-12-271-1/+1
* Fixed #21692 -- Quote table name when creating it.Ramiro Morales2013-12-271-0/+13
* Renamed AppCache to Apps.Aymeric Augustin2013-12-241-14/+14
* Moved apps back in the toplevel django namespace.Aymeric Augustin2013-12-221-1/+1
* Deborgified the app cache.Aymeric Augustin2013-12-171-2/+2
* Moved the new app cache inside core.Aymeric Augustin2013-12-171-1/+1
* Moved django.db.models.loading to django.apps.cache.Aymeric Augustin2013-12-171-1/+1
* Fixed #21497 -- Forced conversion to bytes for very long index namesJoel Bohman2013-11-241-0/+7
* Updated syncdb -> migrate in tests.Tim Graham2013-09-031-1/+1
* Add more stringent M2M tests and fix the bug they exposedAndrew Godwin2013-08-191-1/+9
* Support index_together during model creationAndrew Godwin2013-08-111-0/+9
* Split out a BaseAppCache, make AppCache borg again, add _meta.app_cacheAndrew Godwin2013-05-091-11/+14
* Merge branch 'master' into schema-alterationAndrew Godwin2013-04-181-0/+77