SQLAlchemy Mapping problem
- by asdvalkn
Dear Everyone,
I am trying to sqlalchemy to correctly map my data. Note that a unified group is basically a group of groups. (One unifiedGroup maps to many groups but each group can only map to one ug).
So basically this is the definition of my unifiedGroups:
CREATE TABLE `unifiedGroups` (
`ugID` INT AUTO_INCREMENT,
`gID` INT NOT…