5 lines
204 B
Python
5 lines
204 B
Python
from muck.models.dbref import Dbref
|
|
from muck.models.exit import Exit
|
|
from sqlalchemy.orm import relationship
|
|
|
|
Dbref.exits = relationship("Exit", back_populates="source", foreign_keys=[Exit.location_id])
|