db.models.query.QuerySet.values_list()
  • References/Python/Django/API/Models/QuerySet API reference

values_list(*fields, flat=False) This is similar to values() except that instead of returning dictionaries, it

2025-01-10 15:47:30
db.models.CommaSeparatedIntegerField
  • References/Python/Django/API/Models/Model field reference

class CommaSeparatedIntegerField(max_length=None, **options) [source]

2025-01-10 15:47:30
db.models.Transform
  • References/Python/Django/API/Models/Lookup API reference

class Transform [source] A Transform is a generic class to implement field transformations

2025-01-10 15:47:30
db.models.ManyToManyField.db_table
  • References/Python/Django/API/Models/Model field reference

ManyToManyField.db_table The name of the table to create for storing the many-to-many data. If this is not provided, Django

2025-01-10 15:47:30
db.models.Options.proxy
  • References/Python/Django/API/Models/Model Meta options

Options.proxy If proxy = True, a model which subclasses another model will be treated as a proxy

2025-01-10 15:47:30
db.models.Field.primary_key
  • References/Python/Django/API/Models/Model field reference

Field.primary_key If True, this field is the primary key for the model. If you

2025-01-10 15:47:30
db.models.Expression.contains_aggregate
  • References/Python/Django/API/Models/Query Expressions

contains_aggregate Tells Django that this expression contains an aggregate and that a GROUP BY clause needs to

2025-01-10 15:47:30
db.models.ForeignKey
  • References/Python/Django/API/Models/Model field reference

class ForeignKey(othermodel, on_delete, **options) [source] A many-to-one relationship. Requires

2025-01-10 15:47:30
db.models.lookups.RegisterLookupMixin
  • References/Python/Django/API/Models/Lookup API reference

class lookups.RegisterLookupMixin A mixin that implements the lookup API on a class.

2025-01-10 15:47:30
db.models.URLField
  • References/Python/Django/API/Models/Model field reference

class URLField(max_length=200, **options) [source] A CharField for a URL.

2025-01-10 15:47:30