5 class Discussion(Entity
):
6 """Represents a collection of comments attached to some other object."""
8 comments
= OneToMany('Comment')
10 class Comment(Entity
):
11 time
= Field(DateTime
, default
=datetime
.datetime
.now
)
12 text
= Field(Unicode(65536))
14 discussion
= ManyToOne('Discussion')
15 user
= ManyToOne('User')