Ivan Folgueira Bande 5fd7c82a1a
format with nph 0.7.0
2026-02-21 23:17:49 +01:00

12 lines
374 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;
"""