From 9840d3aadf7629f088f9d7803b7b26b05ec23356 Mon Sep 17 00:00:00 2001 From: Eduard Date: Wed, 2 Jul 2025 09:57:06 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D1=87=D0=B8=D0=BD=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D1=83=20=D1=81=D0=BE=D1=85=D1=80?= =?UTF-8?q?=D0=B0=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B2=20=D0=B1=D0=B4=20?= =?UTF-8?q?=D0=B1=D0=B5=D0=B7=20id?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/db.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/db/db.py b/db/db.py index 9daf068..e130bd7 100644 --- a/db/db.py +++ b/db/db.py @@ -44,6 +44,7 @@ class Database: try: self.cursor.execute( """INSERT INTO activity( + id, description, time_spent, date_start, @@ -56,6 +57,7 @@ class Database: author_id ) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?)""", ( + act.id, act.description, act.time_spent, act.date_start,