diff options
author | Rosyid Haryadi <rosyid_haryadi@protonmail.com> | 2024-07-28 04:05:31 +0700 |
---|---|---|
committer | Rosyid Haryadi <rosyid_haryadi@protonmail.com> | 2024-07-28 04:05:31 +0700 |
commit | f3acbe23ead27f85367761ba5ec0b1a03df40c09 (patch) | |
tree | da8f3126c481a7a9545a897f416cb756ba6aa7fc /util.py | |
parent | abfe9674d7c444289007edc102315777607b497e (diff) |
upd status, clean db, clean telegram queue
Diffstat (limited to 'util.py')
-rw-r--r-- | util.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ def initDb(): try: conn = sqlite3.connect(dbFile) cur = conn.cursor() - cur.execute("CREATE TABLE incoming (id, msg_date, msg_from, text, is_read)") + cur.execute("CREATE TABLE incoming (id, msg_date, msg_from, text, is_read, update_id)") conn.commit() conn.close() except sqlite3.Error as e: |