Add Big 5 profile field

This commit is contained in:
MartinBraquet
2026-02-13 15:23:54 +01:00
parent ca55a93d5f
commit 7734b689a3
15 changed files with 576 additions and 11 deletions

View File

@@ -856,6 +856,11 @@ export type Database = {
profiles: {
Row: {
age: number | null
big5_agreeableness: number | null
big5_conscientiousness: number | null
big5_extraversion: number | null
big5_neuroticism: number | null
big5_openness: number | null
bio: Json | null
bio_length: number | null
bio_text: string | null
@@ -913,6 +918,11 @@ export type Database = {
}
Insert: {
age?: number | null
big5_agreeableness?: number | null
big5_conscientiousness?: number | null
big5_extraversion?: number | null
big5_neuroticism?: number | null
big5_openness?: number | null
bio?: Json | null
bio_length?: number | null
bio_text?: string | null
@@ -970,6 +980,11 @@ export type Database = {
}
Update: {
age?: number | null
big5_agreeableness?: number | null
big5_conscientiousness?: number | null
big5_extraversion?: number | null
big5_neuroticism?: number | null
big5_openness?: number | null
bio?: Json | null
bio_length?: number | null
bio_text?: string | null
@@ -1204,7 +1219,15 @@ export type Database = {
ts?: string
user_id?: string | null
}
Relationships: []
Relationships: [
{
foreignKeyName: 'user_events_user_id_fkey'
columns: ['user_id']
isOneToOne: false
referencedRelation: 'users'
referencedColumns: ['id']
},
]
}
user_notifications: {
Row: {