improve timezone discovery
This commit is contained in:
@@ -18,6 +18,7 @@ class Participant(Base):
|
||||
)
|
||||
name: Mapped[str] = mapped_column(String(255), nullable=False)
|
||||
email: Mapped[str] = mapped_column(String(255), nullable=False, unique=True)
|
||||
timezone: Mapped[str] = mapped_column(String(50), nullable=False, default="America/Toronto")
|
||||
ics_url: Mapped[str | None] = mapped_column(Text, nullable=True)
|
||||
created_at: Mapped[datetime] = mapped_column(
|
||||
DateTime, default=datetime.utcnow, nullable=False
|
||||
|
||||
Reference in New Issue
Block a user