27 lines
588 B
Go
27 lines
588 B
Go
// Code generated by BobGen mysql v0.42.0. DO NOT EDIT.
|
|
// This file is meant to be re-generated in place and/or deleted at any time.
|
|
|
|
package dberrors
|
|
|
|
var AuthUserErrors = &authUserErrors{
|
|
ErrUniquePrimary: &UniqueConstraintError{
|
|
schema: "",
|
|
table: "auth_user",
|
|
columns: []string{"id"},
|
|
s: "PRIMARY",
|
|
},
|
|
|
|
ErrUniqueUsername: &UniqueConstraintError{
|
|
schema: "",
|
|
table: "auth_user",
|
|
columns: []string{"username"},
|
|
s: "username",
|
|
},
|
|
}
|
|
|
|
type authUserErrors struct {
|
|
ErrUniquePrimary *UniqueConstraintError
|
|
|
|
ErrUniqueUsername *UniqueConstraintError
|
|
}
|