2026-01-27 18:44:02 +00:00
|
|
|
// Code generated by BobGen psql v0.42.5. DO NOT EDIT.
|
2025-11-04 23:11:32 +00:00
|
|
|
// This file is meant to be re-generated in place and/or deleted at any time.
|
|
|
|
|
|
|
|
|
|
package dberrors
|
|
|
|
|
|
|
|
|
|
var OrganizationErrors = &organizationErrors{
|
|
|
|
|
ErrUniqueOrganizationPkey: &UniqueConstraintError{
|
|
|
|
|
schema: "",
|
|
|
|
|
table: "organization",
|
|
|
|
|
columns: []string{"id"},
|
|
|
|
|
s: "organization_pkey",
|
|
|
|
|
},
|
2026-01-16 14:43:26 +00:00
|
|
|
|
|
|
|
|
ErrUniqueOrganizationImportDistrictGidKey: &UniqueConstraintError{
|
|
|
|
|
schema: "",
|
|
|
|
|
table: "organization",
|
|
|
|
|
columns: []string{"import_district_gid"},
|
|
|
|
|
s: "organization_import_district_gid_key",
|
|
|
|
|
},
|
|
|
|
|
|
2026-01-25 18:47:22 +00:00
|
|
|
ErrUniqueOrganizationSlugKey: &UniqueConstraintError{
|
|
|
|
|
schema: "",
|
|
|
|
|
table: "organization",
|
|
|
|
|
columns: []string{"slug"},
|
|
|
|
|
s: "organization_slug_key",
|
|
|
|
|
},
|
2025-11-04 23:11:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type organizationErrors struct {
|
|
|
|
|
ErrUniqueOrganizationPkey *UniqueConstraintError
|
2026-01-16 14:43:26 +00:00
|
|
|
|
|
|
|
|
ErrUniqueOrganizationImportDistrictGidKey *UniqueConstraintError
|
|
|
|
|
|
2026-01-25 18:47:22 +00:00
|
|
|
ErrUniqueOrganizationSlugKey *UniqueConstraintError
|
2025-11-04 23:11:32 +00:00
|
|
|
}
|