mirror of
https://github.com/jcreek/SvelteKitSaasBoilerplate.git
synced 2026-07-14 19:43:55 +00:00
chore(#15): update db_schema types
This commit is contained in:
+35
-1
@@ -34,7 +34,41 @@ export type Database = {
|
|||||||
}
|
}
|
||||||
public: {
|
public: {
|
||||||
Tables: {
|
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: {
|
Views: {
|
||||||
[_ in never]: never
|
[_ in never]: never
|
||||||
|
|||||||
Reference in New Issue
Block a user