Add DB model for publicreport logs

It's just way easier to track that deriving the data every time an API
request is made.
This commit is contained in:
Eli Ribble 2026-03-18 17:32:06 +00:00
parent 1e071d5ce5
commit 1d2570c912
No known key found for this signature in database
14 changed files with 2326 additions and 140 deletions

View file

@ -0,0 +1,17 @@
// Code generated by BobGen psql v0.42.5. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var PublicreportReportLogErrors = &publicreportReportLogErrors{
ErrUniqueReportLogPkey: &UniqueConstraintError{
schema: "publicreport",
table: "report_log",
columns: []string{"id"},
s: "report_log_pkey",
},
}
type publicreportReportLogErrors struct {
ErrUniqueReportLogPkey *UniqueConstraintError
}