8 lines
207 B
Python
8 lines
207 B
Python
from django.db import models
|
|
|
|
class Bookmark(models.Model):
|
|
title = models.CharField(max_length=255,null=True)
|
|
url = models.URLField(max_length=2048)
|
|
|
|
def __str__(self):
|
|
return self.title |