summaryrefslogtreecommitdiff
path: root/tests/schema
AgeCommit message (Expand)Author
2018-04-12[2.0.x] Fixed schema test failure when running tests in reverse.Tim Graham
2018-04-11[2.0.x] Fixed #29193 -- Prevented unnecessary foreign key drops when altering...Jeremy Bowman
2018-04-11[2.0.x] Tested altering a unique field when a reverse M2M relation exists.Jeremy Bowman
2017-12-22[2.0.x] Fixed #28884 -- Fixed crash on SQLite when renaming a field in a mode...Simon Charette
2017-12-05[2.0.x] Refs #28876 -- Fixed incorrect foreign key constraint name for models...Mariusz Felisiak
2017-12-01[2.0.x] Fixed #28849 -- Fixed referenced table and column rename on SQLite.Simon Charette
2017-11-15[2.0.x] Fixed #28792 -- Fixed index name truncation of namespaced tables.Simon Charette
2017-09-06Refs #23919 -- Replaced usage of django.utils.functional.curry() with functoo...Sergey Fedoseev
2017-07-11Fixed #14204 -- Enforced SQLite foreign key constraints.Claude Paroz
2017-06-22Fixed #28298 -- Prevented a primary key alteration from adding a foreign key ...Josh Schneier
2017-06-21Refs #25530 -- Deleted deferred SQL references on delete operation.Simon Charette
2017-06-21Refs #25530 -- Renamed deferred SQL references on rename operation.Simon Charette
2017-06-20Refs #25530 -- Changed _create_index_name to take a table as first parameter.Simon Charette
2017-06-01Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne
2017-06-01Fixed #26682 -- Added support for Oracle identity columns.Mariusz Felisiak
2017-05-24Simplified schema.tests with assertForeignKeyExists()/assertForeignKeyNotExis...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-01Refs #28052 -- Cleaned up some indexes in schema tests.Tim Graham
2017-05-01Fixed #28052 -- Prevented dropping Meta.indexes when changing db_index to False.Markus Holtermann
2017-04-02Fixed #27928 -- Avoided SET/DROP DEFAULT unless a field changes from null to ...Simon Charette
2017-02-01Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis
2017-01-28Fixed #27788 -- Dropped support for Oracle < 12.1.Tim Graham
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-20Refs #23919 -- Removed django.test.mock Python 2 compatibility shim.Tim Graham
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2016-12-30Fixed #27458 -- Fixed invalid sequence/index names when using "USER"."TABLE" ...Andrew Nester
2016-12-28Fixed #27631 -- Prevented execution of transactional DDL statements when unsu...Simon Charette
2016-12-24Fixed #25492 -- Checked deferred foreign key constraints before dropping them.Simon Charette
2016-12-23Refs #26384 -- Isolated a test model in schema tests.Simon Charette
2016-11-10Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za
2016-10-27Fixed #27327 -- Simplified time zone handling by requiring pytz.Tim Graham
2016-09-12Fixed #27098 -- Deprecated DatabaseIntrospection.get_indexesClaude Paroz
2016-09-09Fixed #27195 -- Stopped dropping default when adding a nullable column.Simon Charette
2016-08-12Fixed #27030 -- Added contrib.postgres.indexes.GinIndex.Akshesh
2016-08-12Fixed #20888 -- Added support for column order in class-based indexes.Akshesh
2016-08-11Fixed #24442 -- Improved SchemaEditor's index name truncation.Akshesh
2016-07-13Fixed #26889 -- Fixed missing PostgreSQL index in SchemaEditor.add_field().Jon Dufresne
2016-07-08Added strict=True to all SchemaEditor.alter_field() calls in tests.Jon Dufresne
2016-07-07Fixed #25317, #26090 -- Fixed swapping combinations of unique and db_index du...Jon Dufresne
2016-07-07Refs #26709 -- Added 'model' argument to SchemaEditor.add/remove_index()Akshesh
2016-07-07Fixed #26833 -- Fixed SchemaEditor._constraint_names() to handle features.upp...Jon Dufresne
2016-06-29Fixed #25694 -- Removed incorrect _uniq suffix on index names during migrations.Jon Dufresne
2016-06-27Refs #26034 -- Corrected a schema test to work with the correct field state.Jon Dufresne
2016-06-27Fixed #26709 -- Added class-based indexes.Akshesh
2016-06-21Fixed #26781 -- Made table name case change a noop on SQLite.Simon Charette
2016-06-16Fixed #26747 -- Used more specific assertions in the Django test suite.Jon Dufresne
2016-05-09Fixed #25005 -- Made date and time fields with auto_now/auto_now_add use effe...Iacopo Spalletti
2016-05-07Fixed #26593 -- Leveraged deferrable_sql() in SchemaEditorMarkus Holtermann
2016-05-03Normalized "an SQL" spelling.Ville Skyttä