feat(MED-105): create audit entry on analysis results view

This commit is contained in:
2025-08-11 09:21:13 +03:00
parent 49fc75b17b
commit 83fff1ffe7
4 changed files with 95 additions and 0 deletions

View File

@@ -81,6 +81,30 @@ export type Database = {
}
Relationships: []
}
page_views: {
Row: {
account_id: string
action: string
changed_by: string
created_at: string
id: number
}
Insert: {
account_id: string
action: string
changed_by: string
created_at?: string
id?: number
}
Update: {
account_id?: string
action: string
changed_by?: string
created_at?: string
id?: number
}
Relationships: []
}
request_entries: {
Row: {
comment: string | null