Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
208779fb48
commit
5322453341
@@ -2993,6 +2993,67 @@ export type Database = {
|
||||
},
|
||||
]
|
||||
}
|
||||
task_reminders: {
|
||||
Row: {
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
id: string
|
||||
note: string | null
|
||||
recipient_email: string
|
||||
recipient_user_id: string | null
|
||||
remind_at: string
|
||||
sent_at: string | null
|
||||
task_id: string
|
||||
updated_at: string
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
id?: string
|
||||
note?: string | null
|
||||
recipient_email: string
|
||||
recipient_user_id?: string | null
|
||||
remind_at: string
|
||||
sent_at?: string | null
|
||||
task_id: string
|
||||
updated_at?: string
|
||||
}
|
||||
Update: {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
id?: string
|
||||
note?: string | null
|
||||
recipient_email?: string
|
||||
recipient_user_id?: string | null
|
||||
remind_at?: string
|
||||
sent_at?: string | null
|
||||
task_id?: string
|
||||
updated_at?: string
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "task_reminders_created_by_fkey"
|
||||
columns: ["created_by"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "profiles"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
{
|
||||
foreignKeyName: "task_reminders_recipient_user_id_fkey"
|
||||
columns: ["recipient_user_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "profiles"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
{
|
||||
foreignKeyName: "task_reminders_task_id_fkey"
|
||||
columns: ["task_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "tasks"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
tasks: {
|
||||
Row: {
|
||||
case_id: string | null
|
||||
|
||||
Reference in New Issue
Block a user