From e9afd4db2fc0855c30a9e37d0be485198af05221 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Tue, 14 Oct 2025 19:11:26 +0200 Subject: [PATCH] Regen supabase types --- common/src/supabase/schema.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/common/src/supabase/schema.ts b/common/src/supabase/schema.ts index 5316763c..8989c8fd 100644 --- a/common/src/supabase/schema.ts +++ b/common/src/supabase/schema.ts @@ -596,6 +596,29 @@ export type Database = { } ] } + user_activity: { + Row: { + last_online_time: string + user_id: string + } + Insert: { + last_online_time: string + user_id: string + } + Update: { + last_online_time?: string + user_id?: string + } + Relationships: [ + { + foreignKeyName: 'user_activity_user_id_fkey' + columns: ['user_id'] + isOneToOne: true + referencedRelation: 'users' + referencedColumns: ['id'] + } + ] + } user_events: { Row: { ad_id: string | null