mirror of
https://github.com/logos-messaging/logos-messaging-go-bindings.git
synced 2026-01-17 05:03:09 +00:00
git-subtree-dir: third-party/nwaku git-subtree-split: d94cb7c73631ffd4b934839ba58bc622d331a135
13 lines
376 B
Nim
13 lines
376 B
Nim
const ContentScriptVersion_6* =
|
|
"""
|
|
-- we can drop the timestamp column because this data is also kept in the storedAt column
|
|
ALTER TABLE messages DROP COLUMN timestamp;
|
|
|
|
-- from now on we are only interested in the message timestamp
|
|
ALTER TABLE messages RENAME COLUMN storedAt TO timestamp;
|
|
|
|
-- Update to new version
|
|
UPDATE version SET version = 6 WHERE version = 5;
|
|
|
|
"""
|