mirror of https://github.com/waku-org/nwaku.git
fix: add `meta` to sqlite migration scripts (#2675)
This commit is contained in:
parent
22f64bbd44
commit
82f95999cd
|
@ -0,0 +1 @@
|
|||
ALTER TABLE message ADD COLUMN meta BLOB;
|
|
@ -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] / ".." / ".." / ".." / ".."
|
||||
|
|
Loading…
Reference in New Issue