Remove old FieldSeeker tables, use v2 generated tables.

This requires a bunch of changes since the types on these tables are
much closer to the underlying types of the Fieldseeker data we are
getting back from the API.

I now need to use proper UUID types everywhere, which means I had to
modify the bob gen config to consistently use google UUID, my UUID
library of choice.

I also had to add the organization_id to all the fieldseeker tables
since we rely on them existing for some of our compound queries.

There were some changes to the API type signatures to get things to
build. I may yet regret those.
This commit is contained in:
Eli Ribble 2025-12-24 17:49:39 -07:00
parent 58f5afccc9
commit 1395e3d3ac
445 changed files with 54077 additions and 275856 deletions

View file

@ -1077,7 +1077,7 @@ func updateSummaryTables(ctx context.Context, org *models.Organization) {
log.Error().Err(err).Msg("Failed to get organization")
}*/
log.Info().Int("org_id", int(org.ID)).Msg("Getting point locations")
point_locations, err := org.FSPointlocations().All(ctx, db.PGInstance.BobDB)
point_locations, err := org.Pointlocations().All(ctx, db.PGInstance.BobDB)
if err != nil {
log.Error().Err(err).Msg("Failed to get organization")
return
@ -1088,7 +1088,12 @@ func updateSummaryTables(ctx context.Context, org *models.Organization) {
log.Info().Int("resolution", i).Msg("Working summary layer")
cellToCount := make(map[h3.Cell]int, 0)
for _, p := range point_locations {
cell, err := getCell(p.GeometryX, p.GeometryY, i)
p, err := getPoint(p.Geometry)
if err != nil {
log.Error().Err(err).Msg("Failed to get geometry point")
continue
}
cell, err := h3.LatLngToCell(p, i)
if err != nil {
log.Error().Err(err).Msg("Failed to get cell")
continue
@ -1615,3 +1620,5 @@ func exportFieldseekerLayer(ctx context.Context, org *models.Organization, fssyn
log.Info().Uint("inserts", stats.Inserts).Uint("updates", stats.Updates).Uint("no change", stats.Unchanged).Str("layer", layer.Name).Msg("Finished layer")
return stats, nil
}

View file

@ -10,4 +10,5 @@ psql:
- "fieldseeker"
queries:
- ./sql
uuid_pkg: google
plugins_preset: "all"

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSContainerrelateErrors = &fsContainerrelateErrors{
ErrUniqueFsContainerrelatePkey: &UniqueConstraintError{
schema: "",
table: "fs_containerrelate",
columns: []string{"objectid"},
s: "fs_containerrelate_pkey",
},
}
type fsContainerrelateErrors struct {
ErrUniqueFsContainerrelatePkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSFieldscoutinglogErrors = &fsFieldscoutinglogErrors{
ErrUniqueFsFieldscoutinglogPkey: &UniqueConstraintError{
schema: "",
table: "fs_fieldscoutinglog",
columns: []string{"objectid"},
s: "fs_fieldscoutinglog_pkey",
},
}
type fsFieldscoutinglogErrors struct {
ErrUniqueFsFieldscoutinglogPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSHabitatrelateErrors = &fsHabitatrelateErrors{
ErrUniqueFsHabitatrelatePkey: &UniqueConstraintError{
schema: "",
table: "fs_habitatrelate",
columns: []string{"objectid"},
s: "fs_habitatrelate_pkey",
},
}
type fsHabitatrelateErrors struct {
ErrUniqueFsHabitatrelatePkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSInspectionsampleErrors = &fsInspectionsampleErrors{
ErrUniqueFsInspectionsamplePkey: &UniqueConstraintError{
schema: "",
table: "fs_inspectionsample",
columns: []string{"objectid"},
s: "fs_inspectionsample_pkey",
},
}
type fsInspectionsampleErrors struct {
ErrUniqueFsInspectionsamplePkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSInspectionsampledetailErrors = &fsInspectionsampledetailErrors{
ErrUniqueFsInspectionsampledetailPkey: &UniqueConstraintError{
schema: "",
table: "fs_inspectionsampledetail",
columns: []string{"objectid"},
s: "fs_inspectionsampledetail_pkey",
},
}
type fsInspectionsampledetailErrors struct {
ErrUniqueFsInspectionsampledetailPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSLinelocationErrors = &fsLinelocationErrors{
ErrUniqueFsLinelocationPkey: &UniqueConstraintError{
schema: "",
table: "fs_linelocation",
columns: []string{"objectid"},
s: "fs_linelocation_pkey",
},
}
type fsLinelocationErrors struct {
ErrUniqueFsLinelocationPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSLocationtrackingErrors = &fsLocationtrackingErrors{
ErrUniqueFsLocationtrackingPkey: &UniqueConstraintError{
schema: "",
table: "fs_locationtracking",
columns: []string{"objectid"},
s: "fs_locationtracking_pkey",
},
}
type fsLocationtrackingErrors struct {
ErrUniqueFsLocationtrackingPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSMosquitoinspectionErrors = &fsMosquitoinspectionErrors{
ErrUniqueFsMosquitoinspectionPkey: &UniqueConstraintError{
schema: "",
table: "fs_mosquitoinspection",
columns: []string{"objectid"},
s: "fs_mosquitoinspection_pkey",
},
}
type fsMosquitoinspectionErrors struct {
ErrUniqueFsMosquitoinspectionPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSPointlocationErrors = &fsPointlocationErrors{
ErrUniqueFsPointlocationPkey: &UniqueConstraintError{
schema: "",
table: "fs_pointlocation",
columns: []string{"objectid"},
s: "fs_pointlocation_pkey",
},
}
type fsPointlocationErrors struct {
ErrUniqueFsPointlocationPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSPolygonlocationErrors = &fsPolygonlocationErrors{
ErrUniqueFsPolygonlocationPkey: &UniqueConstraintError{
schema: "",
table: "fs_polygonlocation",
columns: []string{"objectid"},
s: "fs_polygonlocation_pkey",
},
}
type fsPolygonlocationErrors struct {
ErrUniqueFsPolygonlocationPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSPoolErrors = &fsPoolErrors{
ErrUniqueFsPoolPkey: &UniqueConstraintError{
schema: "",
table: "fs_pool",
columns: []string{"objectid"},
s: "fs_pool_pkey",
},
}
type fsPoolErrors struct {
ErrUniqueFsPoolPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSPooldetailErrors = &fsPooldetailErrors{
ErrUniqueFsPooldetailPkey: &UniqueConstraintError{
schema: "",
table: "fs_pooldetail",
columns: []string{"objectid"},
s: "fs_pooldetail_pkey",
},
}
type fsPooldetailErrors struct {
ErrUniqueFsPooldetailPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSProposedtreatmentareaErrors = &fsProposedtreatmentareaErrors{
ErrUniqueFsProposedtreatmentareaPkey: &UniqueConstraintError{
schema: "",
table: "fs_proposedtreatmentarea",
columns: []string{"objectid"},
s: "fs_proposedtreatmentarea_pkey",
},
}
type fsProposedtreatmentareaErrors struct {
ErrUniqueFsProposedtreatmentareaPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSQamosquitoinspectionErrors = &fsQamosquitoinspectionErrors{
ErrUniqueFsQamosquitoinspectionPkey: &UniqueConstraintError{
schema: "",
table: "fs_qamosquitoinspection",
columns: []string{"objectid"},
s: "fs_qamosquitoinspection_pkey",
},
}
type fsQamosquitoinspectionErrors struct {
ErrUniqueFsQamosquitoinspectionPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSRodentlocationErrors = &fsRodentlocationErrors{
ErrUniqueFsRodentlocationPkey: &UniqueConstraintError{
schema: "",
table: "fs_rodentlocation",
columns: []string{"objectid"},
s: "fs_rodentlocation_pkey",
},
}
type fsRodentlocationErrors struct {
ErrUniqueFsRodentlocationPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSSamplecollectionErrors = &fsSamplecollectionErrors{
ErrUniqueFsSamplecollectionPkey: &UniqueConstraintError{
schema: "",
table: "fs_samplecollection",
columns: []string{"objectid"},
s: "fs_samplecollection_pkey",
},
}
type fsSamplecollectionErrors struct {
ErrUniqueFsSamplecollectionPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSSamplelocationErrors = &fsSamplelocationErrors{
ErrUniqueFsSamplelocationPkey: &UniqueConstraintError{
schema: "",
table: "fs_samplelocation",
columns: []string{"objectid"},
s: "fs_samplelocation_pkey",
},
}
type fsSamplelocationErrors struct {
ErrUniqueFsSamplelocationPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSServicerequestErrors = &fsServicerequestErrors{
ErrUniqueFsServicerequestPkey: &UniqueConstraintError{
schema: "",
table: "fs_servicerequest",
columns: []string{"objectid"},
s: "fs_servicerequest_pkey",
},
}
type fsServicerequestErrors struct {
ErrUniqueFsServicerequestPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSSpeciesabundanceErrors = &fsSpeciesabundanceErrors{
ErrUniqueFsSpeciesabundancePkey: &UniqueConstraintError{
schema: "",
table: "fs_speciesabundance",
columns: []string{"objectid"},
s: "fs_speciesabundance_pkey",
},
}
type fsSpeciesabundanceErrors struct {
ErrUniqueFsSpeciesabundancePkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSStormdrainErrors = &fsStormdrainErrors{
ErrUniqueFsStormdrainPkey: &UniqueConstraintError{
schema: "",
table: "fs_stormdrain",
columns: []string{"objectid"},
s: "fs_stormdrain_pkey",
},
}
type fsStormdrainErrors struct {
ErrUniqueFsStormdrainPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSTimecardErrors = &fsTimecardErrors{
ErrUniqueFsTimecardPkey: &UniqueConstraintError{
schema: "",
table: "fs_timecard",
columns: []string{"objectid"},
s: "fs_timecard_pkey",
},
}
type fsTimecardErrors struct {
ErrUniqueFsTimecardPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSTrapdatumErrors = &fsTrapdatumErrors{
ErrUniqueFsTrapdataPkey: &UniqueConstraintError{
schema: "",
table: "fs_trapdata",
columns: []string{"objectid"},
s: "fs_trapdata_pkey",
},
}
type fsTrapdatumErrors struct {
ErrUniqueFsTrapdataPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSTraplocationErrors = &fsTraplocationErrors{
ErrUniqueFsTraplocationPkey: &UniqueConstraintError{
schema: "",
table: "fs_traplocation",
columns: []string{"objectid"},
s: "fs_traplocation_pkey",
},
}
type fsTraplocationErrors struct {
ErrUniqueFsTraplocationPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSTreatmentErrors = &fsTreatmentErrors{
ErrUniqueFsTreatmentPkey: &UniqueConstraintError{
schema: "",
table: "fs_treatment",
columns: []string{"objectid"},
s: "fs_treatment_pkey",
},
}
type fsTreatmentErrors struct {
ErrUniqueFsTreatmentPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSTreatmentareaErrors = &fsTreatmentareaErrors{
ErrUniqueFsTreatmentareaPkey: &UniqueConstraintError{
schema: "",
table: "fs_treatmentarea",
columns: []string{"objectid"},
s: "fs_treatmentarea_pkey",
},
}
type fsTreatmentareaErrors struct {
ErrUniqueFsTreatmentareaPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSZoneErrors = &fsZoneErrors{
ErrUniqueFsZonesPkey: &UniqueConstraintError{
schema: "",
table: "fs_zones",
columns: []string{"objectid"},
s: "fs_zones_pkey",
},
}
type fsZoneErrors struct {
ErrUniqueFsZonesPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var FSZones2Errors = &fsZones2Errors{
ErrUniqueFsZones2Pkey: &UniqueConstraintError{
schema: "",
table: "fs_zones2",
columns: []string{"objectid"},
s: "fs_zones2_pkey",
},
}
type fsZones2Errors struct {
ErrUniqueFsZones2Pkey *UniqueConstraintError
}

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryContainerrelateErrors = &historyContainerrelateErrors{
ErrUniqueHistoryContainerrelatePkey: &UniqueConstraintError{
schema: "",
table: "history_containerrelate",
columns: []string{"objectid", "version"},
s: "history_containerrelate_pkey",
},
}
type historyContainerrelateErrors struct {
ErrUniqueHistoryContainerrelatePkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryFieldscoutinglogErrors = &historyFieldscoutinglogErrors{
ErrUniqueHistoryFieldscoutinglogPkey: &UniqueConstraintError{
schema: "",
table: "history_fieldscoutinglog",
columns: []string{"objectid", "version"},
s: "history_fieldscoutinglog_pkey",
},
}
type historyFieldscoutinglogErrors struct {
ErrUniqueHistoryFieldscoutinglogPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryHabitatrelateErrors = &historyHabitatrelateErrors{
ErrUniqueHistoryHabitatrelatePkey: &UniqueConstraintError{
schema: "",
table: "history_habitatrelate",
columns: []string{"objectid", "version"},
s: "history_habitatrelate_pkey",
},
}
type historyHabitatrelateErrors struct {
ErrUniqueHistoryHabitatrelatePkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryInspectionsampleErrors = &historyInspectionsampleErrors{
ErrUniqueHistoryInspectionsamplePkey: &UniqueConstraintError{
schema: "",
table: "history_inspectionsample",
columns: []string{"objectid", "version"},
s: "history_inspectionsample_pkey",
},
}
type historyInspectionsampleErrors struct {
ErrUniqueHistoryInspectionsamplePkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryInspectionsampledetailErrors = &historyInspectionsampledetailErrors{
ErrUniqueHistoryInspectionsampledetailPkey: &UniqueConstraintError{
schema: "",
table: "history_inspectionsampledetail",
columns: []string{"objectid", "version"},
s: "history_inspectionsampledetail_pkey",
},
}
type historyInspectionsampledetailErrors struct {
ErrUniqueHistoryInspectionsampledetailPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryLinelocationErrors = &historyLinelocationErrors{
ErrUniqueHistoryLinelocationPkey: &UniqueConstraintError{
schema: "",
table: "history_linelocation",
columns: []string{"objectid", "version"},
s: "history_linelocation_pkey",
},
}
type historyLinelocationErrors struct {
ErrUniqueHistoryLinelocationPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryLocationtrackingErrors = &historyLocationtrackingErrors{
ErrUniqueHistoryLocationtrackingPkey: &UniqueConstraintError{
schema: "",
table: "history_locationtracking",
columns: []string{"objectid", "version"},
s: "history_locationtracking_pkey",
},
}
type historyLocationtrackingErrors struct {
ErrUniqueHistoryLocationtrackingPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryMosquitoinspectionErrors = &historyMosquitoinspectionErrors{
ErrUniqueHistoryMosquitoinspectionPkey: &UniqueConstraintError{
schema: "",
table: "history_mosquitoinspection",
columns: []string{"objectid", "version"},
s: "history_mosquitoinspection_pkey",
},
}
type historyMosquitoinspectionErrors struct {
ErrUniqueHistoryMosquitoinspectionPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryPointlocationErrors = &historyPointlocationErrors{
ErrUniqueHistoryPointlocationPkey: &UniqueConstraintError{
schema: "",
table: "history_pointlocation",
columns: []string{"objectid", "version"},
s: "history_pointlocation_pkey",
},
}
type historyPointlocationErrors struct {
ErrUniqueHistoryPointlocationPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryPolygonlocationErrors = &historyPolygonlocationErrors{
ErrUniqueHistoryPolygonlocationPkey: &UniqueConstraintError{
schema: "",
table: "history_polygonlocation",
columns: []string{"objectid", "version"},
s: "history_polygonlocation_pkey",
},
}
type historyPolygonlocationErrors struct {
ErrUniqueHistoryPolygonlocationPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryPoolErrors = &historyPoolErrors{
ErrUniqueHistoryPoolPkey: &UniqueConstraintError{
schema: "",
table: "history_pool",
columns: []string{"objectid", "version"},
s: "history_pool_pkey",
},
}
type historyPoolErrors struct {
ErrUniqueHistoryPoolPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryPooldetailErrors = &historyPooldetailErrors{
ErrUniqueHistoryPooldetailPkey: &UniqueConstraintError{
schema: "",
table: "history_pooldetail",
columns: []string{"objectid", "version"},
s: "history_pooldetail_pkey",
},
}
type historyPooldetailErrors struct {
ErrUniqueHistoryPooldetailPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryProposedtreatmentareaErrors = &historyProposedtreatmentareaErrors{
ErrUniqueHistoryProposedtreatmentareaPkey: &UniqueConstraintError{
schema: "",
table: "history_proposedtreatmentarea",
columns: []string{"objectid", "version"},
s: "history_proposedtreatmentarea_pkey",
},
}
type historyProposedtreatmentareaErrors struct {
ErrUniqueHistoryProposedtreatmentareaPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryQamosquitoinspectionErrors = &historyQamosquitoinspectionErrors{
ErrUniqueHistoryQamosquitoinspectionPkey: &UniqueConstraintError{
schema: "",
table: "history_qamosquitoinspection",
columns: []string{"objectid", "version"},
s: "history_qamosquitoinspection_pkey",
},
}
type historyQamosquitoinspectionErrors struct {
ErrUniqueHistoryQamosquitoinspectionPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryRodentlocationErrors = &historyRodentlocationErrors{
ErrUniqueHistoryRodentlocationPkey: &UniqueConstraintError{
schema: "",
table: "history_rodentlocation",
columns: []string{"objectid", "version"},
s: "history_rodentlocation_pkey",
},
}
type historyRodentlocationErrors struct {
ErrUniqueHistoryRodentlocationPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistorySamplecollectionErrors = &historySamplecollectionErrors{
ErrUniqueHistorySamplecollectionPkey: &UniqueConstraintError{
schema: "",
table: "history_samplecollection",
columns: []string{"objectid", "version"},
s: "history_samplecollection_pkey",
},
}
type historySamplecollectionErrors struct {
ErrUniqueHistorySamplecollectionPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistorySamplelocationErrors = &historySamplelocationErrors{
ErrUniqueHistorySamplelocationPkey: &UniqueConstraintError{
schema: "",
table: "history_samplelocation",
columns: []string{"objectid", "version"},
s: "history_samplelocation_pkey",
},
}
type historySamplelocationErrors struct {
ErrUniqueHistorySamplelocationPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryServicerequestErrors = &historyServicerequestErrors{
ErrUniqueHistoryServicerequestPkey: &UniqueConstraintError{
schema: "",
table: "history_servicerequest",
columns: []string{"objectid", "version"},
s: "history_servicerequest_pkey",
},
}
type historyServicerequestErrors struct {
ErrUniqueHistoryServicerequestPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistorySpeciesabundanceErrors = &historySpeciesabundanceErrors{
ErrUniqueHistorySpeciesabundancePkey: &UniqueConstraintError{
schema: "",
table: "history_speciesabundance",
columns: []string{"objectid", "version"},
s: "history_speciesabundance_pkey",
},
}
type historySpeciesabundanceErrors struct {
ErrUniqueHistorySpeciesabundancePkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryStormdrainErrors = &historyStormdrainErrors{
ErrUniqueHistoryStormdrainPkey: &UniqueConstraintError{
schema: "",
table: "history_stormdrain",
columns: []string{"objectid", "version"},
s: "history_stormdrain_pkey",
},
}
type historyStormdrainErrors struct {
ErrUniqueHistoryStormdrainPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryTimecardErrors = &historyTimecardErrors{
ErrUniqueHistoryTimecardPkey: &UniqueConstraintError{
schema: "",
table: "history_timecard",
columns: []string{"objectid", "version"},
s: "history_timecard_pkey",
},
}
type historyTimecardErrors struct {
ErrUniqueHistoryTimecardPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryTrapdatumErrors = &historyTrapdatumErrors{
ErrUniqueHistoryTrapdataPkey: &UniqueConstraintError{
schema: "",
table: "history_trapdata",
columns: []string{"objectid", "version"},
s: "history_trapdata_pkey",
},
}
type historyTrapdatumErrors struct {
ErrUniqueHistoryTrapdataPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryTraplocationErrors = &historyTraplocationErrors{
ErrUniqueHistoryTraplocationPkey: &UniqueConstraintError{
schema: "",
table: "history_traplocation",
columns: []string{"objectid", "version"},
s: "history_traplocation_pkey",
},
}
type historyTraplocationErrors struct {
ErrUniqueHistoryTraplocationPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryTreatmentErrors = &historyTreatmentErrors{
ErrUniqueHistoryTreatmentPkey: &UniqueConstraintError{
schema: "",
table: "history_treatment",
columns: []string{"objectid", "version"},
s: "history_treatment_pkey",
},
}
type historyTreatmentErrors struct {
ErrUniqueHistoryTreatmentPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryTreatmentareaErrors = &historyTreatmentareaErrors{
ErrUniqueHistoryTreatmentareaPkey: &UniqueConstraintError{
schema: "",
table: "history_treatmentarea",
columns: []string{"objectid", "version"},
s: "history_treatmentarea_pkey",
},
}
type historyTreatmentareaErrors struct {
ErrUniqueHistoryTreatmentareaPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryZoneErrors = &historyZoneErrors{
ErrUniqueHistoryZonesPkey: &UniqueConstraintError{
schema: "",
table: "history_zones",
columns: []string{"objectid", "version"},
s: "history_zones_pkey",
},
}
type historyZoneErrors struct {
ErrUniqueHistoryZonesPkey *UniqueConstraintError
}

View file

@ -1,17 +0,0 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var HistoryZones2Errors = &historyZones2Errors{
ErrUniqueHistoryZones2Pkey: &UniqueConstraintError{
schema: "",
table: "history_zones2",
columns: []string{"objectid", "version"},
s: "history_zones2_pkey",
},
}
type historyZones2Errors struct {
ErrUniqueHistoryZones2Pkey *UniqueConstraintError
}

View file

@ -0,0 +1,17 @@
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var NoteAudioErrors = &noteAudioErrors{
ErrUniqueNoteAudioPkey: &UniqueConstraintError{
schema: "",
table: "note_audio",
columns: []string{"version", "uuid"},
s: "note_audio_pkey",
},
}
type noteAudioErrors struct {
ErrUniqueNoteAudioPkey *UniqueConstraintError
}

View file

@ -0,0 +1,17 @@
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var NoteAudioBreadcrumbErrors = &noteAudioBreadcrumbErrors{
ErrUniqueNoteAudioBreadcrumbPkey: &UniqueConstraintError{
schema: "",
table: "note_audio_breadcrumb",
columns: []string{"note_audio_version", "note_audio_uuid", "position"},
s: "note_audio_breadcrumb_pkey",
},
}
type noteAudioBreadcrumbErrors struct {
ErrUniqueNoteAudioBreadcrumbPkey *UniqueConstraintError
}

View file

@ -0,0 +1,17 @@
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var NoteAudioDatumErrors = &noteAudioDatumErrors{
ErrUniqueNoteAudioDataPkey: &UniqueConstraintError{
schema: "",
table: "note_audio_data",
columns: []string{"note_audio_version", "note_audio_uuid", "type_"},
s: "note_audio_data_pkey",
},
}
type noteAudioDatumErrors struct {
ErrUniqueNoteAudioDataPkey *UniqueConstraintError
}

View file

@ -0,0 +1,17 @@
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var NoteImageErrors = &noteImageErrors{
ErrUniqueNoteImagePkey: &UniqueConstraintError{
schema: "",
table: "note_image",
columns: []string{"version", "uuid"},
s: "note_image_pkey",
},
}
type noteImageErrors struct {
ErrUniqueNoteImagePkey *UniqueConstraintError
}

View file

@ -0,0 +1,17 @@
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var NoteImageBreadcrumbErrors = &noteImageBreadcrumbErrors{
ErrUniqueNoteImageBreadcrumbPkey: &UniqueConstraintError{
schema: "",
table: "note_image_breadcrumb",
columns: []string{"note_image_version", "note_image_uuid", "position"},
s: "note_image_breadcrumb_pkey",
},
}
type noteImageBreadcrumbErrors struct {
ErrUniqueNoteImageBreadcrumbPkey *UniqueConstraintError
}

View file

@ -0,0 +1,17 @@
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors
var NoteImageDatumErrors = &noteImageDatumErrors{
ErrUniqueNoteImageDataPkey: &UniqueConstraintError{
schema: "",
table: "note_image_data",
columns: []string{"note_image_version", "note_image_uuid", "type_"},
s: "note_image_data_pkey",
},
}
type noteImageDatumErrors struct {
ErrUniqueNoteImageDataPkey *UniqueConstraintError
}

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.3-0.20251202003046-49148fc66a73+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package dberrors

Some files were not shown because too many files have changed in this diff Show more