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
}