chore(#15): update db_schema types

This commit is contained in:
OllyNicholass
2024-06-19 01:21:03 +01:00
parent baa515ca55
commit c374d686fb
+35 -1
View File
@@ -34,7 +34,41 @@ export type Database = {
}
public: {
Tables: {
[_ in never]: never
profiles: {
Row: {
created_at: string | null
email: string | null
full_name: string | null
id: string
updated_at: string | null
username: string | null
}
Insert: {
created_at?: string | null
email?: string | null
full_name?: string | null
id: string
updated_at?: string | null
username?: string | null
}
Update: {
created_at?: string | null
email?: string | null
full_name?: string | null
id?: string
updated_at?: string | null
username?: string | null
}
Relationships: [
{
foreignKeyName: "profiles_id_fkey"
columns: ["id"]
isOneToOne: true
referencedRelation: "users"
referencedColumns: ["id"]
},
]
}
}
Views: {
[_ in never]: never