from django.db import models class Bookmark(models.Model): title = models.CharField(max_length=255,null=True) url = models.URLField(max_length=2048)