default email false (#32)

Co-authored-by: Kartik Sarangmath <kartiksarangmath@Kartiks-MacBook-Air.local>
This commit is contained in:
ksarangmath
2025-07-26 19:31:06 -07:00
committed by GitHub
parent 5b11d4600d
commit cd9925353a

View File

@@ -41,7 +41,7 @@ class User(Base):
# Notification preferences
push_notifications_enabled: Mapped[bool] = mapped_column(default=True)
email_notifications_enabled: Mapped[bool] = mapped_column(default=True)
email_notifications_enabled: Mapped[bool] = mapped_column(default=False)
sms_notifications_enabled: Mapped[bool] = mapped_column(default=False)
phone_number: Mapped[str | None] = mapped_column(
String(20), default=None