From fde423e5da8ca2219e0f88211a64bfc702610f61 Mon Sep 17 00:00:00 2001 From: Mark Haines Date: Tue, 21 Feb 2017 13:52:43 +0000 Subject: [PATCH] More whitespace --- .../matrix-org/dendrite/roomserver/storage/rooms_table.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/github.com/matrix-org/dendrite/roomserver/storage/rooms_table.go b/src/github.com/matrix-org/dendrite/roomserver/storage/rooms_table.go index 1dd29c6a5..07d668fac 100644 --- a/src/github.com/matrix-org/dendrite/roomserver/storage/rooms_table.go +++ b/src/github.com/matrix-org/dendrite/roomserver/storage/rooms_table.go @@ -13,10 +13,10 @@ CREATE TABLE IF NOT EXISTS rooms ( room_nid BIGINT PRIMARY KEY DEFAULT nextval('room_nid_seq'), -- Textual ID for the room. room_id TEXT NOT NULL CONSTRAINT room_id_unique UNIQUE, - -- 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. - -- (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 + -- 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. + -- (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 ); `