Add ban reason to profiles

This commit is contained in:
gpt-engineer-app[bot]
2025-10-30 02:51:16 +00:00
parent e0d1a66fb2
commit e5de404e59
8 changed files with 146 additions and 10 deletions

View File

@@ -1952,6 +1952,7 @@ export type Database = {
Row: {
avatar_image_id: string | null
avatar_url: string | null
ban_reason: string | null
banned: boolean
bio: string | null
coaster_count: number | null
@@ -1983,6 +1984,7 @@ export type Database = {
Insert: {
avatar_image_id?: string | null
avatar_url?: string | null
ban_reason?: string | null
banned?: boolean
bio?: string | null
coaster_count?: number | null
@@ -2014,6 +2016,7 @@ export type Database = {
Update: {
avatar_image_id?: string | null
avatar_url?: string | null
ban_reason?: string | null
banned?: boolean
bio?: string | null
coaster_count?: number | null