Merge pull request #257 from ouchadam/bug/missing-migration

Adding migration for muted room table
This commit is contained in:
Adam Brown 2022-11-07 08:24:31 +00:00 committed by GitHub
commit f9e68304f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,4 @@
CREATE TABLE IF NOT EXISTS dbMutedRoom (
room_id TEXT NOT NULL,
PRIMARY KEY (room_id)
);