Skip to content

Commit e9afd4d

Browse files
committed
Regen supabase types
1 parent b23efe4 commit e9afd4d

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

common/src/supabase/schema.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,29 @@ export type Database = {
596596
}
597597
]
598598
}
599+
user_activity: {
600+
Row: {
601+
last_online_time: string
602+
user_id: string
603+
}
604+
Insert: {
605+
last_online_time: string
606+
user_id: string
607+
}
608+
Update: {
609+
last_online_time?: string
610+
user_id?: string
611+
}
612+
Relationships: [
613+
{
614+
foreignKeyName: 'user_activity_user_id_fkey'
615+
columns: ['user_id']
616+
isOneToOne: true
617+
referencedRelation: 'users'
618+
referencedColumns: ['id']
619+
}
620+
]
621+
}
599622
user_events: {
600623
Row: {
601624
ad_id: string | null

0 commit comments

Comments
 (0)