Index: trunk/grails-app/domain/Section.groovy
===================================================================
--- trunk/grails-app/domain/Section.groovy	(revision 330)
+++ trunk/grails-app/domain/Section.groovy	(revision 331)
@@ -6,4 +6,5 @@
     String name
     String description = ""
+    String comment = ""
     boolean isActive = true
 
@@ -16,5 +17,6 @@
     static constraints = {
         name(maxSize:50, unique:true, blank:false)
-        description(maxSize:100)
+        description(maxSize:75)
+        comment(maxSize:500)
         isActive()
     }
