summaryrefslogtreecommitdiff
path: root/tests/schema/models.py
AgeCommit message (Expand)Author
2021-06-10[3.2.x] Fixed #32503 -- Fixed altering BLOB/TEXT field to non-nullable with d...Yuekui Li
2020-03-23Added missing Meta.apps to a schema model.Tim Graham
2019-03-17Refs #30172 -- Prevented removing a model Meta's index/unique_together from r...Paveł Tyślacki
2019-03-17Refs #30172 -- Prevented removing a field's check or unique constraint from r...Paveł Tyślacki
2018-06-17Fixed #29496 -- Fixed crash on Oracle when converting a non-unique field to p...Mariusz Felisiak
2017-05-24Fixed #27860 -- Dropped varchar_pattern_ops/text_pattern_ops index before alt...Mariusz Felisiak
2017-05-23Fixed #27859 -- Ignored db_index for TextField/BinaryField on Oracle and MySQL.Mariusz Felisiak
2017-05-01Fixed #28052 -- Prevented dropping Meta.indexes when changing db_index to False.Markus Holtermann
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2016-12-23Refs #26384 -- Isolated a test model in schema tests.Simon Charette
2016-06-29Fixed #25694 -- Removed incorrect _uniq suffix on index names during migrations.Jon Dufresne
2016-03-29Fixed #26384 -- Fixed renaming the PK on a model with a self-referential FK o...Alex Hill
2015-07-27Fixed #21127 -- Started deprecation toward requiring on_delete for ForeignKey...Flavio Curella
2015-07-15Fixed #25128 -- Fixed SQLite SchemaEditor crash when adding a ForeignObject f...Tim Graham
2015-06-15Fixed #24972 -- Fixed removing unique_together indexes on MySQL.Adam Brenecki
2015-06-02Fixed #24893 -- Fixed lack of unique constraint when changing a field from pr...Tim Graham
2015-06-02Fixed #24892 -- Fixed quoting of SQL when renaming a field to AutoField in Po...Tim Graham
2015-05-28Fixed #24817 -- Prevented loss of null info in MySQL field renaming.Andriy Sokolovskiy
2015-04-19Fixed #24658 -- Added missing Meta attribute in schema testsClaude Paroz
2015-02-05Cleaned up schema testsMarkus Holtermann
2015-01-19Fixed #24163 -- Removed unique constraint after index on MySQLMarkus Holtermann
2014-12-04Fixed #23920 -- Fixed MySQL crash when adding blank=True to TextField.Tim Graham
2014-10-31Fixed #23738 -- Allowed migrating from NULL to NOT NULL with the same default...Markus Holtermann
2014-08-09Fixed #23264: Schema backends honour db_constraintAndrew Godwin
2014-07-21Fixed #23009: Shorten FK identifiers in add_field and make consistentAndrew Godwin
2014-05-08Fixed #22476: Couldn't alter attributes on M2Ms with through= setAndrew Godwin
2014-03-08Fixed #22183: Through M2Ms now correctly handledAndrew Godwin
2013-12-27Amend test table name so it doesn't clash.Ramiro Morales
2013-12-27Fixed #21692 -- Quote table name when creating it.Ramiro Morales
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-17Deborgified the app cache.Aymeric Augustin
2013-12-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Moved django.db.models.loading to django.apps.cache.Aymeric Augustin
2013-11-24Fixed #21497 -- Forced conversion to bytes for very long index namesJoel Bohman
2013-09-03Updated syncdb -> migrate in tests.Tim Graham
2013-08-19Add more stringent M2M tests and fix the bug they exposedAndrew Godwin
2013-08-11Support index_together during model creationAndrew Godwin
2013-05-09Split out a BaseAppCache, make AppCache borg again, add _meta.app_cacheAndrew Godwin
2013-04-18Merge branch 'master' into schema-alterationAndrew Godwin