27 lines
612 B
Go
27 lines
612 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 TastypieApikeyErrors = &tastypieApikeyErrors{
|
|
ErrUniquePrimary: &UniqueConstraintError{
|
|
schema: "",
|
|
table: "tastypie_apikey",
|
|
columns: []string{"id"},
|
|
s: "PRIMARY",
|
|
},
|
|
|
|
ErrUniqueUserId: &UniqueConstraintError{
|
|
schema: "",
|
|
table: "tastypie_apikey",
|
|
columns: []string{"user_id"},
|
|
s: "user_id",
|
|
},
|
|
}
|
|
|
|
type tastypieApikeyErrors struct {
|
|
ErrUniquePrimary *UniqueConstraintError
|
|
|
|
ErrUniqueUserId *UniqueConstraintError
|
|
}
|