summaryrefslogtreecommitdiff
path: root/tests/db_functions/models.py
Commit message (Collapse)AuthorAgeFilesLines
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-2/+2
|
* Fixed #31487 -- Added precision argument to Round().Nick Pope2021-03-291-1/+1
|
* Removed unused __str__() methods in tests models.Mariusz Felisiak2020-04-301-12/+0
| | | Follow up to 6461583b6cc257d25880ef9a9fd7e2125ac53ce1.
* Removed unnecessary numeric indexes in format strings.Jon Dufresne2019-11-191-1/+1
|
* Fixed #29648 -- Fixed crash when using subqueries inside datetime truncation ↵Raphael Michel2018-08-071-0/+1
| | | | functions.
* Refs #28643 -- Added math database functions.Junyi Jiao2018-07-051-0/+11
| | | Thanks Nick Pope for much review.
* Refs #18247 -- Fixed SQLite QuerySet filtering on decimal result of Least ↵Sergey Fedoseev2017-03-291-0/+5
| | | | and Greatest.
* Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz2017-01-181-5/+0
|
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
|
* Fixed #25774 -- Refactor datetime expressions into public APIJosh Smeaton2016-05-181-0/+15
|
* Fixed #21127 -- Started deprecation toward requiring on_delete for ↵Flavio Curella2015-07-271-1/+1
| | | | ForeignKey/OneToOneField
* Fixed #24767 -- Added Greatest and Least expressionsIan Foote2015-06-051-0/+12
| | | | Greatest and Least are row-level Function versions of Min and Max.
* Fixed #23753 -- Added a suite of SQL FunctionsJosh Smeaton2014-12-271-0/+31
Added functions and tests Added docs and more tests Added TextField converter to mysql backend Aliased Value as V in example docs and tests Removed unicode_compatible in example Fixed console emulation in examples