Save all lob events to the database
They're pretty raw, but this will help us to understand what we can collect
This commit is contained in:
parent
4db1a6f678
commit
0ce3420792
7 changed files with 607 additions and 8 deletions
|
|
@ -80,6 +80,7 @@ func Where[Q psql.Filterable]() struct {
|
|||
H3Aggregations h3AggregationWhere[Q]
|
||||
Jobs jobWhere[Q]
|
||||
Leads leadWhere[Q]
|
||||
LobEvents lobEventWhere[Q]
|
||||
LogImpersonations logImpersonationWhere[Q]
|
||||
NoteAudios noteAudioWhere[Q]
|
||||
NoteAudioBreadcrumbs noteAudioBreadcrumbWhere[Q]
|
||||
|
|
@ -191,6 +192,7 @@ func Where[Q psql.Filterable]() struct {
|
|||
H3Aggregations h3AggregationWhere[Q]
|
||||
Jobs jobWhere[Q]
|
||||
Leads leadWhere[Q]
|
||||
LobEvents lobEventWhere[Q]
|
||||
LogImpersonations logImpersonationWhere[Q]
|
||||
NoteAudios noteAudioWhere[Q]
|
||||
NoteAudioBreadcrumbs noteAudioBreadcrumbWhere[Q]
|
||||
|
|
@ -301,6 +303,7 @@ func Where[Q psql.Filterable]() struct {
|
|||
H3Aggregations: buildH3AggregationWhere[Q](H3Aggregations.Columns),
|
||||
Jobs: buildJobWhere[Q](Jobs.Columns),
|
||||
Leads: buildLeadWhere[Q](Leads.Columns),
|
||||
LobEvents: buildLobEventWhere[Q](LobEvents.Columns),
|
||||
LogImpersonations: buildLogImpersonationWhere[Q](LogImpersonations.Columns),
|
||||
NoteAudios: buildNoteAudioWhere[Q](NoteAudios.Columns),
|
||||
NoteAudioBreadcrumbs: buildNoteAudioBreadcrumbWhere[Q](NoteAudioBreadcrumbs.Columns),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue