Fixed the database issue

This commit is contained in:
Dan
2024-05-05 17:29:53 -04:00
parent 38485c5a98
commit ff15da0061
2 changed files with 4 additions and 2 deletions

View File

@@ -20,6 +20,8 @@ async def init_db():
deadline TEXT,
status TEXT,
priority TEXT,
reminder_time DATETIME,
reminder_sent BOOLEAN DEFAULT FALSE,
FOREIGN KEY(project_id) REFERENCES projects(id))
'''
)