mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-07 23:44:53 -04:00
Note about "Write-Ahead Log" (WAL) mode: The SQLite WAL mode has a bunch of advantages that are quite nice to have: 1. WAL is significantly faster in most scenarios. 2. WAL provides more concurrency as readers do not block writers and a writer does not block readers. Reading and writing can proceed concurrently. 3. Disk I/O operations tends to be more sequential using WAL. 4. WAL uses many fewer fsync() operations and is thus less vulnerable to problems on systems where the fsync() system call is broken. The downsides of WAL mode don't really affect us. So let's turn it on. More info: https://www.sqlite.org/wal.html Co-authored-by: Jonas Platte <jplatte@matrix.org> Co-authored-by: Damir Jelić <poljar@termina.org.uk>
57 lines
1.2 KiB
SQL
57 lines
1.2 KiB
SQL
CREATE TABLE "kv" (
|
|
"key" TEXT PRIMARY KEY NOT NULL,
|
|
"value" BLOB NOT NULL
|
|
);
|
|
|
|
CREATE TABLE "session" (
|
|
"session_id" BLOB PRIMARY KEY NOT NULL,
|
|
"sender_key" BLOB NOT NULL,
|
|
"data" BLOB NOT NULL
|
|
);
|
|
CREATE INDEX "session_sender_key_idx"
|
|
ON "session" ("sender_key");
|
|
|
|
CREATE TABLE "inbound_group_session" (
|
|
"session_id" BLOB PRIMARY KEY NOT NULL,
|
|
"room_id" BLOB NOT NULL,
|
|
"backed_up" INTEGER NOT NULL,
|
|
"data" BLOB NOT NULL
|
|
);
|
|
CREATE INDEX "inbound_group_session_room_id_idx"
|
|
ON "inbound_group_session" ("room_id");
|
|
|
|
CREATE TABLE "outbound_group_session" (
|
|
"room_id" BLOB PRIMARY KEY NOT NULL,
|
|
"data" BLOB NOT NULL
|
|
);
|
|
|
|
CREATE TABLE "device" (
|
|
"user_id" BLOB NOT NULL,
|
|
"device_id" BLOB NOT NULL,
|
|
"data" BLOB NOT NULL,
|
|
|
|
PRIMARY KEY ("user_id", "device_id")
|
|
);
|
|
CREATE INDEX "device_user_id"
|
|
ON "device" ("user_id");
|
|
|
|
CREATE TABLE "identity" (
|
|
"user_id" BLOB PRIMARY KEY NOT NULL,
|
|
"data" BLOB NOT NULL
|
|
);
|
|
|
|
CREATE TABLE "tracked_user" (
|
|
"user_id" BLOB PRIMARY KEY NOT NULL,
|
|
"data" BLOB NOT NULL
|
|
);
|
|
|
|
CREATE TABLE "olm_hash" (
|
|
"data" BLOB PRIMARY KEY NOT NULL
|
|
);
|
|
|
|
CREATE TABLE "key_requests" (
|
|
"request_id" BLOB PRIMARY KEY NOT NULL,
|
|
"sent_out" INTEGER NOT NULL,
|
|
"data" BLOB NOT NULL
|
|
);
|