Co-authored-by: Reifonas <211114984+Reifonas@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-05-14 12:49:54 +00:00
parent bca866e5ea
commit 8c48abf36a
2 changed files with 45 additions and 1 deletions
+24 -1
View File
@@ -14,7 +14,30 @@ export type Database = {
}
public: {
Tables: {
[_ in never]: never
share_rooms: {
Row: {
code: string
created_at: string
expires_at: string
is_active: boolean
viewer_count: number
}
Insert: {
code: string
created_at?: string
expires_at?: string
is_active?: boolean
viewer_count?: number
}
Update: {
code?: string
created_at?: string
expires_at?: string
is_active?: boolean
viewer_count?: number
}
Relationships: []
}
}
Views: {
[_ in never]: never