Files
matrix-rust-sdk/crates/matrix-sdk-sqlite/migrations/state_store/003_send_queue.sql
T

10 lines
269 B
SQL

-- Send queue events, keyed by room id and transaction id.
CREATE TABLE "send_queue_events" (
"room_id" BLOB NOT NULL,
"transaction_id" BLOB NOT NULL,
"content" BLOB NOT NULL,
"wedged" BOOLEAN NOT NULL,
PRIMARY KEY ("room_id", "transaction_id")
);