refactor: replace DefaultLimitOffsetPage with LimitOffsetPage in multiple files and update timezone handling to use UTC
This commit is contained in:
@@ -12,7 +12,7 @@ from app.models.base import QueryModel
|
||||
class User(QueryModel, table=True):
|
||||
"""Application user account and profile attributes."""
|
||||
|
||||
__tablename__ = "users"
|
||||
__tablename__ = "users" # pyright: ignore[reportAssignmentType]
|
||||
|
||||
id: UUID = Field(default_factory=uuid4, primary_key=True)
|
||||
clerk_user_id: str = Field(index=True, unique=True)
|
||||
|
||||
Reference in New Issue
Block a user