Added migrations for chat_identity_last_published register

This commit is contained in:
Samuel Hawksby-Robinson 2020-10-28 13:19:01 +00:00 committed by Andrea Maria Piana
parent af7117070f
commit fe4b7c6d80
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1 @@
DROP TABLE chat_identity_last_published;

View File

@ -0,0 +1,4 @@
CREATE TABLE IF NOT EXISTS chat_identity_last_published (
chat_id VARCHAR NOT NULL PRIMARY KEY ON CONFLICT REPLACE,
clock_value INT NOT NULL
);