Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/schema/fields.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix import sorting problem.Aymeric Augustin2015-09-211-3/+2
|
* Renamed descriptor classes for related objects.Aymeric Augustin2015-09-211-2/+2
| | | | | | | | | | | | The old names were downright confusing. Some seemed to mean the opposite of what the class actually did. The new names follow a consistent nomenclature: (Forward|Reverse)(ManyToOne|OneToOne|ManyToMany)Descriptor. I mentioned combinations that do not exist in the docstring in order to help people who would search for them in the code base.
* Fixed #24846 -- Added support to MySQL SchemaEditor for ↵Adam Chainz2015-05-311-0/+9
| | | | all blob/text data types
* Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen2015-03-251-5/+6
| | | | | | | | 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.
* Merged ManyRelatedObjectsDescriptor and ↵Loic Bistuer2015-02-161-3/+3
| | | | | | | ReverseManyRelatedObjectsDescriptor and made all "many" related objects descriptors inherit from ForeignRelatedObjectsDescriptor.
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-3/+2
|
* Cleaned up schema testsMarkus Holtermann2015-02-051-0/+4
| | | | Thanks Tim Graham for the review.
* Fixed #24104 -- Fixed check to look on ↵Andriy Sokolovskiy2015-01-221-0/+54
field.many_to_many instead of class instance