actual-server/sql/messages.sql

10 lines
180 B
MySQL
Raw Normal View History

2022-03-31 17:19:08 +00:00
CREATE TABLE messages_binary
2022-09-02 15:44:39 +00:00
(timestamp TEXT PRIMARY KEY,
2022-03-31 17:19:08 +00:00
is_encrypted BOOLEAN,
2022-09-02 15:44:39 +00:00
content bytea);
2022-03-31 17:19:08 +00:00
CREATE TABLE messages_merkles
2022-09-02 15:44:39 +00:00
(id INTEGER PRIMARY KEY,
2022-03-31 17:19:08 +00:00
merkle TEXT);