diff options
Diffstat (limited to 'app/links/models.py')
-rw-r--r-- | app/links/models.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/app/links/models.py b/app/links/models.py index cdfd786..2c3480f 100644 --- a/app/links/models.py +++ b/app/links/models.py @@ -18,12 +18,9 @@ RATINGS = ( class Link(models.Model): - link_id = models.CharField(max_length=60, blank=True, null=True) title = models.CharField(max_length=400) url = models.CharField(max_length=400) description = models.TextField(blank=True, null=True) - screen_url = models.CharField(max_length=400, blank=True, null=True) - rating = models.CharField(max_length=1, choices=RATINGS, null=True) pub_date = models.DateTimeField() PUB_STATUS = ( (0, 'Private'), |