Add data for handling parcel images

This commit is contained in:
Eli Ribble 2026-02-28 22:54:39 +00:00
parent 9613cac11a
commit 91fe244da8
No known key found for this signature in database
69 changed files with 20850 additions and 1976 deletions

View file

@ -11,16 +11,16 @@ var AddressErrors = &addressErrors{
s: "address_pkey",
},
ErrUniqueAddressCountryLocalityNumber_StreetKey: &UniqueConstraintError{
ErrUniqueAddressCountryLocalityUnitNumber_StreetKey: &UniqueConstraintError{
schema: "",
table: "address",
columns: []string{"country", "locality", "number_", "street"},
s: "address_country_locality_number__street_key",
columns: []string{"country", "locality", "unit", "number_", "street"},
s: "address_country_locality_unit_number__street_key",
},
}
type addressErrors struct {
ErrUniqueAddressPkey *UniqueConstraintError
ErrUniqueAddressCountryLocalityNumber_StreetKey *UniqueConstraintError
ErrUniqueAddressCountryLocalityUnitNumber_StreetKey *UniqueConstraintError
}