mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
27 lines
674 B
Python
27 lines
674 B
Python
|
from sqlalchemy import *
|
||
|
from sqlalchemy.orm import *
|
||
|
from sqlalchemy.ext.declarative import *
|
||
|
|
||
|
|
||
|
class DndActiveBattle:
|
||
|
__tablename__ = "dndactivebattle"
|
||
|
|
||
|
@declared_attr
|
||
|
def battle_id(self):
|
||
|
return Column(Integer, ForeignKey("dndbattle.id"), primary_key=True)
|
||
|
|
||
|
@declared_attr
|
||
|
def battle(self):
|
||
|
return relationship("DndCharacter", foreign_keys=self.battle_id, backref="active_in")
|
||
|
|
||
|
@declared_attr
|
||
|
def interface_name(self):
|
||
|
return Column(String)
|
||
|
|
||
|
@declared_attr
|
||
|
def interface_data(self):
|
||
|
return Column(LargeBinary)
|
||
|
|
||
|
def __repr__(self):
|
||
|
return f"<{self.__class__.__qualname__}: {self.battle_id}>"
|