Add new tables for storing parcel and address data

This commit is contained in:
Eli Ribble 2026-02-26 18:18:33 +00:00
parent 060e2915f1
commit 7b1ffbab12
No known key found for this signature in database
55 changed files with 18008 additions and 170 deletions

View file

@ -0,0 +1,26 @@
// 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 AddressErrors = &addressErrors{
ErrUniqueAddressPkey: &UniqueConstraintError{
schema: "",
table: "address",
columns: []string{"id"},
s: "address_pkey",
},
ErrUniqueAddressCountryLocalityNumber_StreetKey: &UniqueConstraintError{
schema: "",
table: "address",
columns: []string{"country", "locality", "number_", "street"},
s: "address_country_locality_number__street_key",
},
}
type addressErrors struct {
ErrUniqueAddressPkey *UniqueConstraintError
ErrUniqueAddressCountryLocalityNumber_StreetKey *UniqueConstraintError
}

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 ArcgisAddressMappingErrors = &arcgisAddressMappingErrors{
ErrUniqueAddressMappingPkey: &UniqueConstraintError{
schema: "arcgis",
table: "address_mapping",
columns: []string{"organization_id", "destination"},
s: "address_mapping_pkey",
},
}
type arcgisAddressMappingErrors struct {
ErrUniqueAddressMappingPkey *UniqueConstraintError
}

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 ArcgisFeatureServiceErrors = &arcgisFeatureServiceErrors{
ErrUniqueFeatureServicePkey: &UniqueConstraintError{
schema: "arcgis",
table: "feature_service",
columns: []string{"item_id"},
s: "feature_service_pkey",
},
}
type arcgisFeatureServiceErrors struct {
ErrUniqueFeatureServicePkey *UniqueConstraintError
}

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 ArcgisLayerErrors = &arcgisLayerErrors{
ErrUniqueLayerPkey: &UniqueConstraintError{
schema: "arcgis",
table: "layer",
columns: []string{"feature_service_item_id", "index_"},
s: "layer_pkey",
},
}
type arcgisLayerErrors struct {
ErrUniqueLayerPkey *UniqueConstraintError
}

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 ArcgisLayerFieldErrors = &arcgisLayerFieldErrors{
ErrUniqueLayerFieldPkey: &UniqueConstraintError{
schema: "arcgis",
table: "layer_field",
columns: []string{"layer_feature_service_item_id", "layer_index", "name"},
s: "layer_field_pkey",
},
}
type arcgisLayerFieldErrors struct {
ErrUniqueLayerFieldPkey *UniqueConstraintError
}

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 ArcgisParcelMappingErrors = &arcgisParcelMappingErrors{
ErrUniqueParcelMappingPkey: &UniqueConstraintError{
schema: "arcgis",
table: "parcel_mapping",
columns: []string{"organization_id", "destination"},
s: "parcel_mapping_pkey",
},
}
type arcgisParcelMappingErrors struct {
ErrUniqueParcelMappingPkey *UniqueConstraintError
}

17
db/dberrors/parcel.bob.go Normal file
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 ParcelErrors = &parcelErrors{
ErrUniqueParcelPkey: &UniqueConstraintError{
schema: "",
table: "parcel",
columns: []string{"id"},
s: "parcel_pkey",
},
}
type parcelErrors struct {
ErrUniqueParcelPkey *UniqueConstraintError
}

17
db/dberrors/pool.bob.go Normal file
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 PoolErrors = &poolErrors{
ErrUniquePoolPkey: &UniqueConstraintError{
schema: "",
table: "pool",
columns: []string{"id"},
s: "pool_pkey",
},
}
type poolErrors struct {
ErrUniquePoolPkey *UniqueConstraintError
}

26
db/dberrors/site.bob.go Normal file
View file

@ -0,0 +1,26 @@
// 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 SiteErrors = &siteErrors{
ErrUniqueSitePkey: &UniqueConstraintError{
schema: "",
table: "site",
columns: []string{"id", "version"},
s: "site_pkey",
},
ErrUniqueSiteAddressIdKey: &UniqueConstraintError{
schema: "",
table: "site",
columns: []string{"address_id"},
s: "site_address_id_key",
},
}
type siteErrors struct {
ErrUniqueSitePkey *UniqueConstraintError
ErrUniqueSiteAddressIdKey *UniqueConstraintError
}