crudkit/muck/models/thing.py

6 lines
127 B
Python

from muck.models.dbref import Dbref
class Thing(Dbref):
__mapper_args__ = {
"polymorphic_identity": "thing"
}