REFACTOR production scheduler

This commit is contained in:
Urtzi Alfaro
2025-10-09 18:01:24 +02:00
parent 3c689b4f98
commit b420af32c5
13 changed files with 4046 additions and 6 deletions

View File

@@ -28,7 +28,10 @@ class Tenant(Base):
postal_code = Column(String(10), nullable=False)
latitude = Column(Float)
longitude = Column(Float)
# Timezone configuration for accurate scheduling
timezone = Column(String(50), default="Europe/Madrid", nullable=False)
# Contact info
phone = Column(String(20))
email = Column(String(255))