You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/vendor/gorm.io/gorm/schema/interfaces.go

26 lines
453 B

package schema
import (
"gorm.io/gorm/clause"
)
type GormDataTypeInterface interface {
GormDataType() string
}
type CreateClausesInterface interface {
CreateClauses(*Field) []clause.Interface
}
type QueryClausesInterface interface {
QueryClauses(*Field) []clause.Interface
}
type UpdateClausesInterface interface {
UpdateClauses(*Field) []clause.Interface
}
type DeleteClausesInterface interface {
DeleteClauses(*Field) []clause.Interface
}