Spaces:
Sleeping
Sleeping
File size: 552 Bytes
df50319 ba19a97 df50319 ba19a97 df50319 ba19a97 df50319 ba19a97 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from sqlalchemy import Column, Integer, String
from sqlalchemy.ext.asyncio import AsyncSession
from sqlalchemy.orm import relationship
from app.models.base import Base
class User(Base):
__tablename__ = "users"
id = Column(Integer, primary_key=True)
username = Column(String, unique=True)
password = Column(String)
profile = Column(String)
team_id = Column(Integer, nullable=True)
team = relationship("Team", backref="users")
def __repr__(self):
return f"User(username={self.username}, profile={self.profile})" |