crisis
This commit is contained in:
parent
0b7f586721
commit
3ff29602d3
23 changed files with 130 additions and 95 deletions
12
files/classes/mod.py
Normal file
12
files/classes/mod.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from sqlalchemy import *
|
||||
from sqlalchemy.orm import relationship
|
||||
from files.__main__ import Base
|
||||
|
||||
class Mod(Base):
|
||||
|
||||
__tablename__ = "mods"
|
||||
user_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
|
||||
sub = Column(String, ForeignKey("subs.name"), primary_key=True)
|
||||
|
||||
def __repr__(self):
|
||||
return f"<Mod(user_id={self.user_id}, sub={self.sub})>"
|
Loading…
Add table
Add a link
Reference in a new issue