Files
matrix-rust-sdk/crates/matrix-sdk-sqlite/migrations/state_store/011_thread_subscriptions.sql
T
2025-07-30 12:07:07 +02:00

10 lines
230 B
SQL

-- Thread subscriptions.
CREATE TABLE "thread_subscriptions" (
"room_id" BLOB NOT NULL,
-- Event ID of the thread root.
"event_id" BLOB NOT NULL,
"status" TEXT NOT NULL,
PRIMARY KEY ("room_id", "event_id")
);