From 61a37ef4a4561cfc06ddad7c0e9f1992cc295e6d Mon Sep 17 00:00:00 2001 From: Timothy Messier Date: Wed, 31 May 2023 15:53:16 +0000 Subject: [PATCH] fix(schema): Add missing endpoint column to session recording view --- .../migrations/oss/postgres/71/12_session_recording_views.up.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/db/schema/migrations/oss/postgres/71/12_session_recording_views.up.sql b/internal/db/schema/migrations/oss/postgres/71/12_session_recording_views.up.sql index f4baed783b..5c2ed6fa6f 100644 --- a/internal/db/schema/migrations/oss/postgres/71/12_session_recording_views.up.sql +++ b/internal/db/schema/migrations/oss/postgres/71/12_session_recording_views.up.sql @@ -33,6 +33,7 @@ select rs.end_time, rs.state, rs.error_details, + rs.endpoint, sb.scope_id as storage_bucket_scope_id, -- fields that cover the user fields at creation time uh.public_id as user_history_public_id,