Refactor: Implement avatar cleanup plan

This commit is contained in:
gpt-engineer-app[bot]
2025-09-28 17:38:09 +00:00
parent 728f7c145e
commit 2147514784
6 changed files with 135 additions and 6 deletions

View File

@@ -286,6 +286,7 @@ export type Database = {
}
profiles: {
Row: {
avatar_image_id: string | null
avatar_url: string | null
bio: string | null
coaster_count: number | null
@@ -305,6 +306,7 @@ export type Database = {
username: string
}
Insert: {
avatar_image_id?: string | null
avatar_url?: string | null
bio?: string | null
coaster_count?: number | null
@@ -324,6 +326,7 @@ export type Database = {
username: string
}
Update: {
avatar_image_id?: string | null
avatar_url?: string | null
bio?: string | null
coaster_count?: number | null