fix: add meta to sqlite migration scripts (#2675)

This commit is contained in:
richΛrd 2024-05-07 09:39:06 -04:00 committed by GitHub
parent 4bfe1e3306
commit 7f7aa59c4b
2 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
ALTER TABLE message ADD COLUMN meta BLOB;

View File

@ -10,7 +10,7 @@ import ../../../common/databases/db_sqlite, ../../../common/databases/common
logScope:
topics = "waku archive migration"
const SchemaVersion* = 8 # increase this when there is an update in the database schema
const SchemaVersion* = 9 # increase this when there is an update in the database schema
template projectRoot(): string =
currentSourcePath.rsplit(DirSep, 1)[0] / ".." / ".." / ".." / ".."