Increased element field from 255 to 1000 characters
This commit is contained in:
parent
36acc9137d
commit
d48f2f5d5c
@ -10,7 +10,7 @@ def random_url():
|
|||||||
|
|
||||||
class Feed(models.Model):
|
class Feed(models.Model):
|
||||||
url = models.URLField(max_length=255)
|
url = models.URLField(max_length=255)
|
||||||
element = models.CharField(max_length=255)
|
element = models.CharField(max_length=1000)
|
||||||
title = models.CharField(max_length=255)
|
title = models.CharField(max_length=255)
|
||||||
content = models.CharField(max_length=255)
|
content = models.CharField(max_length=255)
|
||||||
date = models.CharField(max_length=255)
|
date = models.CharField(max_length=255)
|
||||||
|
Loading…
Reference in New Issue
Block a user