Implement admin settings system

This commit is contained in:
gpt-engineer-app[bot]
2025-09-28 18:41:52 +00:00
parent 7aaa75da0b
commit 29d56c6279
6 changed files with 506 additions and 3 deletions

View File

@@ -41,6 +41,39 @@ export type Database = {
}
Relationships: []
}
admin_settings: {
Row: {
category: string
created_at: string
description: string | null
id: string
setting_key: string
setting_value: Json
updated_at: string
updated_by: string | null
}
Insert: {
category: string
created_at?: string
description?: string | null
id?: string
setting_key: string
setting_value: Json
updated_at?: string
updated_by?: string | null
}
Update: {
category?: string
created_at?: string
description?: string | null
id?: string
setting_key?: string
setting_value?: Json
updated_at?: string
updated_by?: string | null
}
Relationships: []
}
companies: {
Row: {
average_rating: number | null