mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
28 lines
692 B
Python
28 lines
692 B
Python
from sqlalchemy import Column, \
|
|
Integer, \
|
|
String, \
|
|
ForeignKey
|
|
from sqlalchemy.orm import relationship
|
|
from sqlalchemy.ext.declarative import declared_attr
|
|
|
|
|
|
class Alias:
|
|
__tablename__ = "aliases"
|
|
|
|
@declared_attr
|
|
def royal_id(self):
|
|
return Column(Integer, ForeignKey("users.uid"))
|
|
|
|
@declared_attr
|
|
def alias(self):
|
|
return Column(String, primary_key=True)
|
|
|
|
@declared_attr
|
|
def royal(self):
|
|
return relationship("User", backref="aliases")
|
|
|
|
def __repr__(self):
|
|
return f"<Alias {str(self)}>"
|
|
|
|
def __str__(self):
|
|
return f"{self.alias}->{self.royal_id}"
|