I created a database with tg-admin sql create for the following:
class StateSequence(SQLObject):
# stuff...
states = MultipleJoin('OrderedState')
class OrderedState(SQLObject):
# stuff...
statesequence = ForeignKey('StateSequence')
The problem is that, for the ForeignKey, tg-admin's sql create created
the field statesequence_id in the orderedstate table but SQLObject
expects it to be state_sequence_id.
I'm not sure where in which product this mismatch occurrs... I'm using
mySQL.
Steve

