Initial commit: Wedding Hall Automation System with Next.js, Supabase, and Modern UI

This commit is contained in:
2025-12-03 21:29:53 +03:00
commit ee68deb4ce
70 changed files with 13038 additions and 0 deletions

View File

@@ -0,0 +1,83 @@
export type Json =
| string
| number
| boolean
| null
| { [key: string]: Json | undefined }
| Json[]
export interface Database {
public: {
Tables: {
profiles: {
Row: {
id: string
role: 'admin' | 'staff'
full_name: string | null
created_at: string
}
Insert: {
id: string
role?: 'admin' | 'staff'
full_name?: string | null
created_at?: string
}
Update: {
id?: string
role?: 'admin' | 'staff'
full_name?: string | null
created_at?: string
}
}
customers: {
Row: {
id: string
full_name: string
phone: string | null
email: string | null
notes: string | null
created_at: string
}
Insert: {
id?: string
full_name: string
phone?: string | null
email?: string | null
notes?: string | null
created_at?: string
}
Update: {
id?: string
full_name?: string
phone?: string | null
email?: string | null
notes?: string | null
created_at?: string
}
}
halls: {
Row: {
id: string
name: string
capacity: number | null
description: string | null
created_at: string
}
Insert: {
id?: string
name: string
capacity?: number | null
description?: string | null
created_at?: string
}
Update: {
id?: string
name?: string
capacity?: number | null
description?: string | null
created_at?: string
}
}
}
}
}