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 22f64bbd44
commit 82f95999cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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] / ".." / ".." / ".." / ".."