Skip to content

Commit a544795

Browse files
committed
🍻 Test with something else
1 parent 04321d1 commit a544795

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/app/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# Shared properties
88
class UserBase(SQLModel):
99
# TODO: fix this
10-
email: EmailStr | float = Field(unique=True, index=True, max_length=255)
11-
is_active: bool = True
10+
email: EmailStr = Field(unique=True, index=True, max_length=255)
11+
is_active: bool | None = None
1212
is_superuser: bool = False
1313
full_name: str | None = Field(default=None, max_length=255)
1414

0 commit comments

Comments
 (0)