Add new tables for storing parcel and address data
This commit is contained in:
parent
060e2915f1
commit
7b1ffbab12
55 changed files with 18008 additions and 170 deletions
26
db/dberrors/address.bob.go
Normal file
26
db/dberrors/address.bob.go
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue