Class DurationField
Store timedelta objects.
Declaration
class DurationField(
Field)
source linkDocumentation
Use interval on PostgreSQL, INTERVAL DAY TO SECOND on Oracle, and bigint
of microseconds on other databases.
Methods
▶ def formfield(self, **kwargs) overrideinherited doc Return a django.forms.Field instance for this field.
▶ def get_db_prep_value(self, value, connection, prepared=False) overrideinherited doc Return field's value prepared for interacting with the database backend.
▶ def to_python(self, value) overrideinherited doc Convert the input value into the expected Python data type, raising django.core.exceptions.ValidationError if the data can't be converted. Return the converted value. Subclasses should override this.
▶ def value_to_string(self, obj) overrideinherited doc Return a string value of this field from the passed obj. This is used by the serialization framework.