woops, that should be:

class Player(SQLObject):
        ...
        team = ForeignKey('Team')
        ...

class Team(SQLObject):
        name = StringCol(length=20, default=None)
        player = ForeignKey('Player')
        stats = MultipleJoin('Tstats')

class Tstat(SQLObject): 
        ... 
        team = ForeignKey('Team')

Reply via email to