Skip to content

Commit

Permalink
type-gen
Browse files Browse the repository at this point in the history
  • Loading branch information
jongrim committed Feb 27, 2024
1 parent e0ea938 commit 7b5a20a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions src/typings/supabase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -797,6 +797,35 @@ export type Database = {
},
]
}
user_calendars: {
Row: {
created_at: string
id: number
user_id: string
webcal_id: string
}
Insert: {
created_at?: string
id?: number
user_id: string
webcal_id: string
}
Update: {
created_at?: string
id?: number
user_id?: string
webcal_id?: string
}
Relationships: [
{
foreignKeyName: "user_calendars_user_id_fkey"
columns: ["user_id"]
isOneToOne: false
referencedRelation: "profiles"
referencedColumns: ["id"]
},
]
}
}
Views: {
[_ in never]: never
Expand Down

0 comments on commit 7b5a20a

Please sign in to comment.