From 5737bd7b18bbdb6c6782dc92c03e336173bf700a Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Wed, 5 Feb 2020 15:17:34 +0000 Subject: [PATCH] Try to fix whitespace in roomsSchema --- roomserver/storage/postgres/rooms_table.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roomserver/storage/postgres/rooms_table.go b/roomserver/storage/postgres/rooms_table.go index 8e84d0dc4..edd15a338 100644 --- a/roomserver/storage/postgres/rooms_table.go +++ b/roomserver/storage/postgres/rooms_table.go @@ -40,9 +40,9 @@ CREATE TABLE IF NOT EXISTS roomserver_rooms ( -- The state of the room after the current set of latest events. -- This will be 0 if there are no latest events in the room. state_snapshot_nid BIGINT NOT NULL DEFAULT 0, - -- The version of the room, which will assist in determining the state resolution - -- algorithm, event ID format, etc. - room_version BIGINT NOT NULL DEFAULT 1 + -- The version of the room, which will assist in determining the state resolution + -- algorithm, event ID format, etc. + room_version BIGINT NOT NULL DEFAULT 1 ); `