This commit is contained in:
DESKTOP-RTLN3BA\$punk 2024-10-10 01:50:01 -07:00
parent 36ca40a335
commit 7ec7821d6f
2 changed files with 1 additions and 9 deletions

@ -1 +1 @@
Subproject commit de5cf7d6c908277101e5a1a72dfc0b9265792f23
Subproject commit a3902546706ac8cff923e8e178a87bc73620e960

View file

@ -11,14 +11,6 @@ class BaseModel(Base):
id = Column(Integer, primary_key=True, index=True)
# class Notification(BaseModel):
# __tablename__ = "notifications"
# text = Column(String)
# user_id = Column(ForeignKey('users.id'))
# user = relationship('User')
class Chat(BaseModel):
__tablename__ = "chats"