From b9331b5f5a10f6cff729e9aad681d899dff11ff6 Mon Sep 17 00:00:00 2001 From: Half-Shot Date: Fri, 30 Sep 2022 10:00:16 +0100 Subject: [PATCH 1/2] Add index to puppet custom_mxid column --- mautrix_telegram/db/upgrade/__init__.py | 1 + .../upgrade/v14_puppet_custom_mxid_index.py | 23 +++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 mautrix_telegram/db/upgrade/v14_puppet_custom_mxid_index.py diff --git a/mautrix_telegram/db/upgrade/__init__.py b/mautrix_telegram/db/upgrade/__init__.py index 574eb003..1082324c 100644 --- a/mautrix_telegram/db/upgrade/__init__.py +++ b/mautrix_telegram/db/upgrade/__init__.py @@ -16,4 +16,5 @@ from . import ( v11_backfill_queue, v12_message_sender, v13_multiple_reactions, + v14_multiple_reactions, ) diff --git a/mautrix_telegram/db/upgrade/v14_puppet_custom_mxid_index.py b/mautrix_telegram/db/upgrade/v14_puppet_custom_mxid_index.py new file mode 100644 index 00000000..c94d2e7e --- /dev/null +++ b/mautrix_telegram/db/upgrade/v14_puppet_custom_mxid_index.py @@ -0,0 +1,23 @@ +# mautrix-telegram - A Matrix-Telegram puppeting bridge +# Copyright (C) 2022 Tulir Asokan +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +from mautrix.util.async_db import Connection + +from . import upgrade_table + + +@upgrade_table.register(description="Add index to puppet custom_mxid column") +async def upgrade_v14(conn: Connection) -> None: + await conn.execute("CREATE INDEX puppet_custom_mxid_idx ON puppet(custom_mxid)") From b4fcccbe10bad2d47a4cbc5248cdd131b96a0cca Mon Sep 17 00:00:00 2001 From: Half-Shot Date: Fri, 30 Sep 2022 10:04:57 +0100 Subject: [PATCH 2/2] fix filename --- mautrix_telegram/db/upgrade/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mautrix_telegram/db/upgrade/__init__.py b/mautrix_telegram/db/upgrade/__init__.py index 1082324c..a358efd3 100644 --- a/mautrix_telegram/db/upgrade/__init__.py +++ b/mautrix_telegram/db/upgrade/__init__.py @@ -16,5 +16,5 @@ from . import ( v11_backfill_queue, v12_message_sender, v13_multiple_reactions, - v14_multiple_reactions, + v14_puppet_custom_mxid_index, )