app/soc/models/comment.py
changeset 1687 8203c805edc7
parent 1678 80411f57f31a
child 1711 654c4fb617ea
--- a/app/soc/models/comment.py	Fri Mar 06 15:23:22 2009 +0000
+++ b/app/soc/models/comment.py	Fri Mar 06 15:52:12 2009 +0000
@@ -41,13 +41,6 @@
   commented on.
   """
 
-  #: A required many:1 relationship with a Work, where the comment entity
-  #: provides additional textual information about the commented work.
-  #: There is a backreference in Work called comments, which is a db.Query
-  #: instance
-  commented = db.ReferenceProperty(reference_class=soc.models.work.Work,
-                                  required=False, collection_name="comments")
-
   #: A required many:1 relationship with a comment entity indicating
   #: the user who provided that comment.  There is a backreference in Work
   #: called comments, which is a db.Query instance.