f46b37dbe08d8c4f88fd877de998a663e9a0ca9a
3 class Discussion(Entity
):
4 """Represents a collection of comments attached to some other object."""
6 comments
= OneToMany('Comment')
9 discussion
= ManyToOne('Discussion')
10 text
= Field(Unicode(65536))