[Debconf-video-commits] r366 - package/branches/pycon09/src/debconfvideo/web/pyconvideo

benh at alioth.debian.org benh at alioth.debian.org
Sat Mar 21 17:56:02 UTC 2009


Author: benh
Date: 2009-03-21 17:56:01 +0000 (Sat, 21 Mar 2009)
New Revision: 366

Modified:
   package/branches/pycon09/src/debconfvideo/web/pyconvideo/models.py
Log:
Event description is multi-line so make it a TextField.


Modified: package/branches/pycon09/src/debconfvideo/web/pyconvideo/models.py
===================================================================
--- package/branches/pycon09/src/debconfvideo/web/pyconvideo/models.py	2009-03-21 17:54:57 UTC (rev 365)
+++ package/branches/pycon09/src/debconfvideo/web/pyconvideo/models.py	2009-03-21 17:56:01 UTC (rev 366)
@@ -51,7 +51,7 @@
                                         db_column='conference_room',
                                         verbose_name='room')
     title = models.CharField(max_length=200)
-    description = models.CharField(max_length=4000)
+    description = models.TextField(max_length=4000)
     start_time = models.DateTimeField()
     duration = IntervalField()
     def __unicode__(self):




More information about the Debconf-video-commits mailing list