Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-06-07 22:23:12 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-06-08 01:27:22 +0300
commitf5e1c95242e81616a60f032c1c9112b0d6c995ca (patch)
tree9f8bf454e89d09314f5231d4beac3abc9efefbe5
parent4634bc9b17489d73449df36677517fc16096de8c (diff)
refactor: Storage: Remove not needed column from query
-rw-r--r--gajim/common/storage/archive.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/gajim/common/storage/archive.py b/gajim/common/storage/archive.py
index bd58017e8..3e52c3a4f 100644
--- a/gajim/common/storage/archive.py
+++ b/gajim/common/storage/archive.py
@@ -105,10 +105,8 @@ class ConversationRow(NamedTuple):
real_jid: JID | None
time: float
kind: int
- show: int
message: str
error: CommonError
- subject: str
additional_data: AdditionalDataDict | None
stanza_id: str
message_id: str
@@ -391,10 +389,8 @@ class MessageArchiveStorage(SqliteStorage):
real_jid as "real_jid [jid]",
time,
kind,
- show,
message,
error as "error [common_error]",
- subject,
additional_data,
stanza_id,
message_id,
@@ -479,10 +475,8 @@ class MessageArchiveStorage(SqliteStorage):
real_jid as "real_jid [jid]",
time,
kind,
- show,
message,
error as "error [common_error]",
- subject,
additional_data,
stanza_id,
message_id,
@@ -504,10 +498,8 @@ class MessageArchiveStorage(SqliteStorage):
real_jid as "real_jid [jid]",
time,
kind,
- show,
message,
error as "error [common_error]",
- subject,
additional_data,
stanza_id,
message_id,
@@ -560,10 +552,8 @@ class MessageArchiveStorage(SqliteStorage):
real_jid as "real_jid [jid]",
time,
kind,
- show,
message,
error as "error [common_error]",
- subject,
additional_data,
stanza_id,
message_id,