Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-17 00:31:58 +00:00
co-authored by renee-png
parent 3da6fee9b1
commit add07a8450
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -378,6 +378,7 @@ export type Database = {
created_at: string
email: string
full_name: string
hourly_rate: number | null
id: string
updated_at: string
}
@@ -385,6 +386,7 @@ export type Database = {
created_at?: string
email?: string
full_name?: string
hourly_rate?: number | null
id: string
updated_at?: string
}
@@ -392,6 +394,7 @@ export type Database = {
created_at?: string
email?: string
full_name?: string
hourly_rate?: number | null
id?: string
updated_at?: string
}
@@ -0,0 +1 @@
ALTER TABLE public.profiles ADD COLUMN IF NOT EXISTS hourly_rate numeric;