Skip to content

Commit

Permalink
chore(fix): Updated article schema
Browse files Browse the repository at this point in the history
  • Loading branch information
happychuks committed Aug 21, 2024
1 parent 3917e9e commit b5a4153
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/apps/research/models/article.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ class Article(BaseModel):
('ready', 'Ready'),
)

title = models.CharField(max_length=100)
title = models.CharField(max_length=500)
content = CKEditor5Field('Text', null=True, blank=True, config_name='extends')
summary = models.CharField(max_length=100, blank=True)
summary = models.CharField(max_length=1000, blank=True)
authors = models.ManyToManyField(Author, blank=True, related_name='articles')
slug = models.SlugField(blank=True)
categories = models.ManyToManyField(Category, blank=True, related_name='articles')
Expand Down

0 comments on commit b5a4153

Please sign in to comment.