Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/model_options
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-281-3/+3
| | | | on_delete for ForeignKey/OneToOneField
* Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen2015-03-251-2/+2
| | | | | | | | Field.rel is now deprecated. Rel objects have now also remote_field attribute. This means that self == self.remote_field.remote_field. In addition, made the Rel objects a bit more like Field objects. Still, marked ManyToManyFields as null=True.
* Sorted imports with isort; refs #23860.Tim Graham2015-02-063-3/+5
|
* Replaced DatabaseCreation sql methods by schema editor ↵Claude Paroz2014-12-231-5/+4
| | | | | | | equivalents Also used schema editor in migrate to sync unmigrated apps (sync_apps). Refs #22340. Thanks Tim Graham for the review.
* Fixed #22778 -- Added a model Meta option to define ↵Renaud Parent2014-06-182-0/+87
| | | | | | default_related_name. Thanks jorgecarleitao and mmardini for reviews.
* Created a new tests folder (`model_options`).Moayad Mardini2014-06-114-0/+176
And moved `tablespaces` option tests to it. The new folder can be used to test models/options, like the new option added in refs #22778.