Files
confetti/migrations/2026-05-18-182028-0000_create_messages/up.sql
T
uelen 598a8624f5 Added working message commands
Also fixed up the subscription forwarder which was sending the wrong
type. Oops
2026-05-31 14:16:49 -07:00

16 lines
368 B
SQL

-- Your SQL goes here
CREATE TYPE room_id AS (
coordinates bigint[],
server text
);
CREATE TABLE messages (
id BIGSERIAL PRIMARY KEY,
room room_id NOT NULL,
body TEXT NOT NULL,
signature BYTEA NOT NULL,
client_timestamp BIGINT NOT NULL,
server_timestamp BIGINT NOT NULL,
username user_t NOT NULL,
edited BOOLEAN DEFAULT false
)