[Answer]-Field with unlimited length in Django

1👍

You’ll have to change the max_length parameter for the EmailField in your Form class:

from django import forms

Class EmailForm(forms.Form):
    email = forms.EmailField(required=True, max_length=1000)

Though, as your database in all likelyhood requires a length specification for the field you will not be able to specify an unlimited length.

👤Simon

Leave a comment