Added periodic reminders and included alembic migration in container
Some checks failed
ci / docker (push) Successful in 4m43s
Python formatting PEP8 / Python-PEP8 (push) Failing after 13s

This commit is contained in:
Finn Christiansen 2024-06-16 22:45:24 +02:00
parent 86a5dd19b5
commit 1f1ae5077e
7 changed files with 61 additions and 11 deletions

View file

@ -1,4 +1,4 @@
from sqlalchemy import Column, String, Integer
from sqlalchemy import Column, String, Integer, Date
from ..db import Base
@ -11,3 +11,4 @@ class User(Base):
location = Column(String)
room_id = Column(String)
reminder_time_in_minutes = Column(Integer)
current_reminder_date = Column(Date)