Make GlobalID required for all Fieldseeker tables

I'm pretty sure it has to be there, and it allows me to clean up my
code.
This commit is contained in:
Eli Ribble 2026-01-05 02:28:28 +00:00
parent 53e08d840e
commit 1aefca2f5d
217 changed files with 871 additions and 1358 deletions

View file

@ -1,4 +1,4 @@
// Code generated by BobGen psql v0.0.4-0.20251216163753-8e325b7c773a+dirty. DO NOT EDIT.
// Code generated by BobGen psql v0.0.4-0.20260105020634-53e08d840e47+dirty. DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package models
@ -95,7 +95,7 @@ type FieldseekerMosquitoinspection struct {
// Original attribute from ArcGIS API is FIELDSPECIES
Fieldspecies null.Val[string] `db:"fieldspecies" `
// Original attribute from ArcGIS API is GlobalID
Globalid null.Val[uuid.UUID] `db:"globalid" `
Globalid uuid.UUID `db:"globalid" `
// Original attribute from ArcGIS API is created_user
CreatedUser null.Val[string] `db:"created_user" `
// Original attribute from ArcGIS API is created_date
@ -346,7 +346,7 @@ type FieldseekerMosquitoinspectionSetter struct {
Cbcount omitnull.Val[int16] `db:"cbcount" `
Containercount omitnull.Val[int16] `db:"containercount" `
Fieldspecies omitnull.Val[string] `db:"fieldspecies" `
Globalid omitnull.Val[uuid.UUID] `db:"globalid" `
Globalid omit.Val[uuid.UUID] `db:"globalid" `
CreatedUser omitnull.Val[string] `db:"created_user" `
CreatedDate omitnull.Val[time.Time] `db:"created_date" `
LastEditedUser omitnull.Val[string] `db:"last_edited_user" `
@ -477,7 +477,7 @@ func (s FieldseekerMosquitoinspectionSetter) SetColumns() []string {
if !s.Fieldspecies.IsUnset() {
vals = append(vals, "fieldspecies")
}
if !s.Globalid.IsUnset() {
if s.Globalid.IsValue() {
vals = append(vals, "globalid")
}
if !s.CreatedUser.IsUnset() {
@ -664,8 +664,8 @@ func (s FieldseekerMosquitoinspectionSetter) Overwrite(t *FieldseekerMosquitoins
if !s.Fieldspecies.IsUnset() {
t.Fieldspecies = s.Fieldspecies.MustGetNull()
}
if !s.Globalid.IsUnset() {
t.Globalid = s.Globalid.MustGetNull()
if s.Globalid.IsValue() {
t.Globalid = s.Globalid.MustGet()
}
if !s.CreatedUser.IsUnset() {
t.CreatedUser = s.CreatedUser.MustGetNull()
@ -955,8 +955,8 @@ func (s *FieldseekerMosquitoinspectionSetter) Apply(q *dialect.InsertQuery) {
vals[32] = psql.Raw("DEFAULT")
}
if !s.Globalid.IsUnset() {
vals[33] = psql.Arg(s.Globalid.MustGetNull())
if s.Globalid.IsValue() {
vals[33] = psql.Arg(s.Globalid.MustGet())
} else {
vals[33] = psql.Raw("DEFAULT")
}
@ -1365,7 +1365,7 @@ func (s FieldseekerMosquitoinspectionSetter) Expressions(prefix ...string) []bob
}})
}
if !s.Globalid.IsUnset() {
if s.Globalid.IsValue() {
exprs = append(exprs, expr.Join{Sep: " = ", Exprs: []bob.Expression{
psql.Quote(append(prefix, "globalid")...),
psql.Arg(s.Globalid),
@ -1903,7 +1903,7 @@ type fieldseekerMosquitoinspectionWhere[Q psql.Filterable] struct {
Cbcount psql.WhereNullMod[Q, int16]
Containercount psql.WhereNullMod[Q, int16]
Fieldspecies psql.WhereNullMod[Q, string]
Globalid psql.WhereNullMod[Q, uuid.UUID]
Globalid psql.WhereMod[Q, uuid.UUID]
CreatedUser psql.WhereNullMod[Q, string]
CreatedDate psql.WhereNullMod[Q, time.Time]
LastEditedUser psql.WhereNullMod[Q, string]
@ -1972,7 +1972,7 @@ func buildFieldseekerMosquitoinspectionWhere[Q psql.Filterable](cols fieldseeker
Cbcount: psql.WhereNull[Q, int16](cols.Cbcount),
Containercount: psql.WhereNull[Q, int16](cols.Containercount),
Fieldspecies: psql.WhereNull[Q, string](cols.Fieldspecies),
Globalid: psql.WhereNull[Q, uuid.UUID](cols.Globalid),
Globalid: psql.Where[Q, uuid.UUID](cols.Globalid),
CreatedUser: psql.WhereNull[Q, string](cols.CreatedUser),
CreatedDate: psql.WhereNull[Q, time.Time](cols.CreatedDate),
LastEditedUser: psql.WhereNull[Q, string](cols.LastEditedUser),