From 66237a09109d185b1e9ce360bfb5000a7464084e Mon Sep 17 00:00:00 2001 From: Till Faelligen <2353100+S7evinK@users.noreply.github.com> Date: Fri, 22 Jul 2022 10:27:57 +0200 Subject: [PATCH] Fix copy&paste mistake --- syncapi/storage/postgres/current_room_state_table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncapi/storage/postgres/current_room_state_table.go b/syncapi/storage/postgres/current_room_state_table.go index 0c9b866d0..d13b7be41 100644 --- a/syncapi/storage/postgres/current_room_state_table.go +++ b/syncapi/storage/postgres/current_room_state_table.go @@ -138,7 +138,7 @@ func NewPostgresCurrentRoomStateTable(db *sql.DB) (tables.CurrentRoomState, erro m := sqlutil.NewMigrator(db) m.AddMigrations(sqlutil.Migration{ Version: "syncapi: add history visibility column (current_room_state)", - Up: deltas.UpAddHistoryVisibilityColumnOutputRoomEvents, + Up: deltas.UpAddHistoryVisibilityColumnCurrentRoomState, }) err = m.Up(context.Background()) if err != nil {