Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/backends/models.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-281-5/+9
| | | | on_delete for ForeignKey/OneToOneField
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+1
|
* Fixed #13711 -- Model check added to ensure that ↵Anubhav Joshi2014-06-171-12/+10
| | | | | | auto-generated column name is within limits of the database. Thanks russellm for report and Tim Graham for review.
* Avoided using BinaryField unecessarily in tests.Aymeric Augustin2014-06-051-1/+4
| | | | | | | | Several database backends struggle with binary data. This change minimizes the risk of unrelated tests failures when binary fields trigger errors. Forward-port of 2e4bcb9b from stable/1.7.x.
* Fixed #19774 -- Deprecated the contenttypes.generic module.Simon Charette2014-01-261-3/+5
| | | | | | | It contained models, forms and admin objects causing undesirable import side effects. Refs #16368. Thanks to Ramiro, Carl and Loïc for the review.
* Fixed #17519 -- Fixed missing SQL constraints to proxy ↵Tim Graham2013-08-021-0/+7
| | | | | | | models. Thanks thibaultj for the report, jenh for the patch, and charettes for the tests.
* Fixed #19954 -- Fixed MySQL _last_executed decodingClaude Paroz2013-03-281-0/+1
| | | | | | | Queries can contain binary data undecodable with utf-8. In this case, using the 'replace' errors mode when decoding seems like an acceptable representation of the query. Thanks Marcel Ryser for the report.
* Added a ManyToManyField(db_constraint=False) option, ↵Alex Gaynor2013-03-071-1/+4
| | | | this allows not creating constraints on the intermediary models.
* Merged regressiontests and modeltests into the test root.Florian Apolloner2013-02-261-0/+101