✨ Added periodic reminders and included alembic migration in container
This commit is contained in:
parent
86a5dd19b5
commit
1f1ae5077e
7 changed files with 61 additions and 11 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue