db.models.ManyToManyField.related_name
  • References/Python/Django/API/Models/Model field reference

ManyToManyField.related_name Same as ForeignKey.related_name.

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

Field.concrete Boolean flag that indicates if the field has a database column associated with it.

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

class DecimalField(max_digits=None, decimal_places=None, **options) [source] A fixed-precision

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

class UUIDField(**options) [source] A field for storing universally unique identifiers. Uses

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

ManyToManyField.symmetrical Only used in the definition of ManyToManyFields on self. Consider the following model:

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

class FileField(upload_to=None, max_length=100, **options) [source] A file-upload field.

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

class DurationField(**options) [source] A field for storing periods of time - modeled in

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

get_internal_type() [source] Returns a string naming this field for backend specific purposes

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

ManyToManyField.db_constraint Controls whether or not constraints should be created in the database for the foreign keys in

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

Field.db_index If True, a database index will be created for this field.

2025-01-10 15:47:30