From 2c9199686e5b7605895b29e8c285e18eabb24bab Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Tue, 5 Dec 2017 18:02:23 +0000 Subject: [PATCH] Fix indent --- .../dendrite/syncapi/storage/output_room_events_table.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/github.com/matrix-org/dendrite/syncapi/storage/output_room_events_table.go b/src/github.com/matrix-org/dendrite/syncapi/storage/output_room_events_table.go index 27e44d3dc..333f608d2 100644 --- a/src/github.com/matrix-org/dendrite/syncapi/storage/output_room_events_table.go +++ b/src/github.com/matrix-org/dendrite/syncapi/storage/output_room_events_table.go @@ -46,9 +46,9 @@ CREATE TABLE IF NOT EXISTS syncapi_output_room_events ( -- A list of event IDs which represent a delta of added/removed room state. This can be NULL -- if there is no delta. add_state_ids TEXT[], - remove_state_ids TEXT[], - device_id TEXT, -- The local device that sent the event, if any - transaction_id TEXT -- The transaction id used to send the event, if any + remove_state_ids TEXT[], + device_id TEXT, -- The local device that sent the event, if any + transaction_id TEXT -- The transaction id used to send the event, if any ); -- for event selection CREATE UNIQUE INDEX IF NOT EXISTS syncapi_event_id_idx ON syncapi_output_room_events(event_id);