Spaces:
Runtime error
Runtime error
File size: 1,008 Bytes
66340f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
from datetime import datetime
from typing import TYPE_CHECKING, List
from fastapi_users_db_sqlalchemy import (
SQLAlchemyBaseUserTableUUID,
SQLAlchemyBaseOAuthAccountTableUUID,
)
from sqlalchemy import DateTime
from sqlalchemy.orm import Mapped, mapped_column, relationship
from sqlalchemy.sql.functions import func
from app.db import Base
if TYPE_CHECKING:
from app.models.document import Document
class OAuthAccount(SQLAlchemyBaseOAuthAccountTableUUID, Base):
pass
class User(SQLAlchemyBaseUserTableUUID, Base):
__tablename__ = "user"
oauth_accounts: Mapped[List[OAuthAccount]] = relationship(
"OAuthAccount", lazy="joined"
)
created: Mapped[datetime] = mapped_column(
DateTime(timezone=True), server_default=func.now()
)
documents: Mapped["Document"] = relationship(
back_populates="user", cascade="all, delete"
)
def __repr__(self):
return f"User(id={self.id!r}, name={self.email!r})"
# add activated column
|