are rows in the created tables.
- `(relation_name)_local`, a relation to the row in the new table that
matches the current default language.
- - `(relation_name)_class`, the class created by this function.
+ - `(relation_name)_table`, the class created by this function.
Note that these are distinct relations. Even though the former necessarily
includes the latter, SQLAlchemy doesn't treat them as linked; loading one
'foreign_id': synonym(foreign_key_name),
'local_language': relationship(language_class,
primaryjoin=table.c.local_language_id == language_class.id,
- innerjoin=True,
- lazy='joined'),
+ innerjoin=True),
})
# Add full-table relations to the original class