Compare commits
3 Commits
8a658a4cf3
...
572c123432
| Author | SHA1 | Date | |
|---|---|---|---|
| 572c123432 | |||
| a3fd037008 | |||
| 9840d3aadf |
4
db/db.py
4
db/db.py
@@ -44,6 +44,7 @@ class Database:
|
||||
try:
|
||||
self.cursor.execute(
|
||||
"""INSERT INTO activity(
|
||||
id,
|
||||
description,
|
||||
time_spent,
|
||||
date_start,
|
||||
@@ -54,8 +55,9 @@ class Database:
|
||||
task_id,
|
||||
project_id,
|
||||
author_id
|
||||
) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?)""",
|
||||
) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)""",
|
||||
(
|
||||
act.id,
|
||||
act.description,
|
||||
act.time_spent,
|
||||
act.date_start,
|
||||
|
||||
Reference in New Issue
Block a user