mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-02-14 16:01:01 -05:00
Add hidden_profiles table
This commit is contained in:
@@ -327,6 +327,42 @@ export type Database = {
|
||||
},
|
||||
]
|
||||
}
|
||||
hidden_profiles: {
|
||||
Row: {
|
||||
created_time: string
|
||||
hidden_user_id: string
|
||||
hider_user_id: string
|
||||
id: number
|
||||
}
|
||||
Insert: {
|
||||
created_time?: string
|
||||
hidden_user_id: string
|
||||
hider_user_id: string
|
||||
id?: never
|
||||
}
|
||||
Update: {
|
||||
created_time?: string
|
||||
hidden_user_id?: string
|
||||
hider_user_id?: string
|
||||
id?: never
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: 'fk_hidden_profiles_hidden'
|
||||
columns: ['hidden_user_id']
|
||||
isOneToOne: false
|
||||
referencedRelation: 'users'
|
||||
referencedColumns: ['id']
|
||||
},
|
||||
{
|
||||
foreignKeyName: 'fk_hidden_profiles_hider'
|
||||
columns: ['hider_user_id']
|
||||
isOneToOne: false
|
||||
referencedRelation: 'users'
|
||||
referencedColumns: ['id']
|
||||
},
|
||||
]
|
||||
}
|
||||
interests: {
|
||||
Row: {
|
||||
creator_id: string | null
|
||||
|
||||
Reference in New Issue
Block a user