Index: trunk/grails-app/domain/Department.groovy
===================================================================
--- trunk/grails-app/domain/Department.groovy	(revision 332)
+++ trunk/grails-app/domain/Department.groovy	(revision 333)
@@ -3,4 +3,5 @@
     String name
     String description = ""
+    String comment = ""
     boolean isActive = true
 
@@ -13,5 +14,6 @@
     static constraints = {
         name(maxSize:50, unique:true, blank:false)
-        description(maxSize:100)
+        description(maxSize:75)
+        comment(maxSize:500)
         isActive()
     }
