mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-06 22:43:10 -06:00
More whitespace
This commit is contained in:
parent
bab6ee4a9f
commit
fde423e5da
|
|
@ -13,10 +13,10 @@ CREATE TABLE IF NOT EXISTS rooms (
|
||||||
room_nid BIGINT PRIMARY KEY DEFAULT nextval('room_nid_seq'),
|
room_nid BIGINT PRIMARY KEY DEFAULT nextval('room_nid_seq'),
|
||||||
-- Textual ID for the room.
|
-- Textual ID for the room.
|
||||||
room_id TEXT NOT NULL CONSTRAINT room_id_unique UNIQUE,
|
room_id TEXT NOT NULL CONSTRAINT room_id_unique UNIQUE,
|
||||||
-- The most recent events in the room that aren't referenced by another event.
|
-- The most recent events in the room that aren't referenced by another event.
|
||||||
-- This list may empty if the server hasn't joined the room yet.
|
-- This list may empty if the server hasn't joined the room yet.
|
||||||
-- (The server will be in that state while it stores the events for the initial state of the room)
|
-- (The server will be in that state while it stores the events for the initial state of the room)
|
||||||
latest_event_nids BIGINT[] NOT NULL
|
latest_event_nids BIGINT[] NOT NULL
|
||||||
);
|
);
|
||||||
`
|
`
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue