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