Skip to content

Commit

Permalink
Lengthen title and description fields
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamK committed Apr 9, 2019
1 parent d1cdd44 commit 2a024d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions swingtime/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ class Event(models.Model):
'''
Container model for general metadata and associated ``Occurrence`` entries.
'''
title = models.CharField(_('title'), max_length=32)
description = models.CharField(_('description'), max_length=100)
title = models.CharField(_('title'), max_length=50)
description = models.CharField(_('description'), max_length=2000)
event_type = models.ForeignKey(
EventType,
verbose_name=_('event type'),
Expand Down

0 comments on commit 2a024d8

Please sign in to comment.