Django Public Recipes
This code creates a field named "fieldName" that can store a maximum of 200 characters.
Library: django
Shortcut: django.field.url
fieldName = models.URLField(max_length = 200)
This code creates a field named "fieldName" that can store a maximum of 200 characters.
Library: django
Shortcut: django.field.url
fieldName = models.URLField(max_length = 200)