summaryrefslogtreecommitdiff
path: root/tests/schema/tests.py
AgeCommit message (Expand)Author
2015-01-06Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon
2014-12-30Fixed #23581 -- Prevented extraneous DROP DEFAULT statements.Tim Graham
2014-12-15Fixed refs #23987 test on Oracle.Tim Graham
2014-12-15Fixed #23987 -- Made SQLite SchemaEditor always use effective_default().Andriy Sokolovskiy
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-12-04Fixed #23920 -- Fixed MySQL crash when adding blank=True to TextField.Tim Graham
2014-11-03Fixed typos using https://github.com/vlajos/misspell_fixerVeres Lajos
2014-10-31Fixed #23738 -- Allowed migrating from NULL to NOT NULL with the same default...Markus Holtermann
2014-10-23Fixed #23702 -- Fixed adding an explicit id field on SQLite.Tim Graham
2014-10-09Fixed #23609 -- Fixed IntegrityError that prevented altering a NULL column in...Markus Holtermann
2014-09-27Fixed #22738 -- made finer distinctions for when Boolean is not detected on O...Shai Berger
2014-09-26Fixed #22738 -- Abstracted boolean field type introspectionClaude Paroz
2014-09-23Fixed #23065 -- Quoted constraint names in SQL generated by migrations.Sergey Fedoseev
2014-08-25Removed unnecessary absolute_imports.Tim Graham
2014-08-22Fixed schema test for Oracle 11.2.0.1 which is used in Django Project's CI.Shai Berger
2014-08-09Fixed #23264: Schema backends honour db_constraintAndrew Godwin
2014-08-04Fixed #23091: CreateModel and AddField were clashing with deferred SQLAndrew Godwin
2014-07-21Fixed #23009: Shorten FK identifiers in add_field and make consistentAndrew Godwin
2014-06-18Fixed several flake8 errorsAlex Gaynor
2014-06-17Fix test breakage on MySQLAndrew Godwin
2014-06-16Fixed #22851: BinaryView wasn't getting a binary defaultAndrew Godwin
2014-06-16Renamed DatabaseFeature.supports_check_constraints to supports_column_check_c...Tim Graham
2014-05-08Appeased flake8.Aymeric Augustin
2014-05-08Fixed #22476: Couldn't alter attributes on M2Ms with through= setAndrew Godwin
2014-05-07Fixed #22581: Pass default values for schema through get_db_prep_save()Andrew Godwin
2014-04-26Fix many many typos in comments throughout the codebaseAlex Gaynor
2014-03-24Fixed #22293 -- Avoided renaming many-to-many tables to themselves.Daniel Hahler
2014-03-08Fixed #22183: Through M2Ms now correctly handledAndrew Godwin
2014-02-02Ensure cursors are closed when no longer needed.Michael Manfre
2014-01-25Fixed a failing schema assertion.Simon Charette
2014-01-25Fixed #21783: More SQLite default fun with nulls.Andrew Godwin
2014-01-20Fixed two test failures under OracleShai Berger
2014-01-19Fixed #21783: Use defaults for adding NOT NULL on sqliteAndrew Godwin
2013-12-27Fixed #21692 -- Quote table name when creating it.Ramiro Morales
2013-12-11Fix altering of SERIAL columns and InnoDB being picky about FK changesAndrew Godwin
2013-11-25flake8 fixAlex Gaynor
2013-11-25Fixed test failure on OracleShai Berger
2013-11-24Fixed #21497 -- Forced conversion to bytes for very long index namesJoel Bohman
2013-11-03Fixed all E251 violationsAlex Gaynor
2013-10-19Removed unused local variables in tests.Tim Graham
2013-09-24Fixed #21151 -- Bad cleanup in schema M2M repoint testAndrew Godwin
2013-09-06Fixed #21029: Test for previously-commited SchemaEditor.__exit__ bug.Andrew Godwin
2013-09-03Removed references to django.utils.unittest which is PendingDeprecationTim Graham
2013-08-30Fixed #21005 -- Made schema tests language-independentClaude Paroz
2013-08-30Fixed #20989 -- Removed useless explicit list comprehensions.Simon Charette
2013-08-23Fix some small errors in the testsAndrew Godwin
2013-08-19Add more stringent M2M tests and fix the bug they exposedAndrew Godwin
2013-08-13Oracle schema backend, passes most tests and is pretty complete.Andrew Godwin
2013-08-11Support index_together during model creationAndrew Godwin
2013-07-02Make get_constraints return columns in orderAndrew Godwin