mirror of
https://github.com/tulir/mautrix-whatsapp
synced 2024-11-05 14:29:09 +01:00
a948ea0146
See d578d1a610
Database upgrades from before v0.4.0 were squashed, users must update
to at least v0.4.0 before updating beyond this commit.
7 lines
371 B
SQL
7 lines
371 B
SQL
-- v48: Move crypto/state/whatsmeow store upgrade handling to separate systems
|
|
CREATE TABLE crypto_version (version INTEGER PRIMARY KEY);
|
|
INSERT INTO crypto_version VALUES (6);
|
|
CREATE TABLE whatsmeow_version (version INTEGER PRIMARY KEY);
|
|
INSERT INTO whatsmeow_version VALUES (1);
|
|
CREATE TABLE mx_version (version INTEGER PRIMARY KEY);
|
|
INSERT INTO mx_version VALUES (1);
|