I believe you will have to define this table rather than pulling it
automatically from the db, that will allow you to override the
autogenerated python name for the column using dbName. Something like
this:
Does not work:
class User(SQLObject):
pass = StringCol(alternateID=True)
lists = MultipleJoin('List')
Should work:
class User(SQLObject):
userpass = StringCol(alternateID=True, dbName="pass")
lists = MultipleJoin('List')