mirror of
https://github.com/vacp2p/mvds.git
synced 2026-01-09 12:07:55 -05:00
7 lines
140 B
SQL
7 lines
140 B
SQL
CREATE TABLE mvds_messages (
|
|
id BLOB PRIMARY KEY,
|
|
group_id BLOB NOT NULL,
|
|
timestamp INTEGER NOT NULL,
|
|
body BLOB NOT NULL
|
|
);
|