fix(database/core): fix upgrade path for ReadPosts table

Fixes COMPOSE-LOBSTERS-2S
This commit is contained in:
Harsh Shandilya 2024-03-19 17:59:35 +05:30
parent 109176768c
commit 4eaf25e189

View file

@ -1,4 +1,4 @@
CREATE TABLE ReadPosts(
CREATE TABLE IF NOT EXISTS ReadPosts(
id TEXT NOT NULL PRIMARY KEY
);