Files
mautrix-telegram/pkg/connector/store/upgrades/06-topic-index.sql
T
2025-12-06 15:27:51 +02:00

9 lines
188 B
SQL

-- v6 (compatible with v2+): Add table for topics
CREATE TABLE telegram_topic (
channel_id BIGINT NOT NULL,
topic_id BIGINT NOT NULL,
PRIMARY KEY (channel_id, topic_id)
);