Restore previous migration script

This commit is contained in:
s1fr0 2022-02-04 23:04:13 +01:00
parent 80282db1d7
commit c7e06ab4e7
1 changed files with 2 additions and 2 deletions

View File

@ -13,12 +13,12 @@ DROP TABLE Message;
CREATE TABLE IF NOT EXISTS Message(
id BLOB PRIMARY KEY,
receiverTimestamp INTEGER NOT NULL,
receiverTimestamp REAL NOT NULL,
contentTopic BLOB NOT NULL,
pubsubTopic BLOB NOT NULL,
payload BLOB,
version INTEGER NOT NULL,
senderTimestamp INTEGER NOT NULL
senderTimestamp REAL NOT NULL
) WITHOUT ROWID;