gorm/dialect_pgx.go
2017-11-16 19:43:17 +07:00

13 lines
139 B
Go

package gorm
type pgx struct {
postgres
}
func init() {
RegisterDialect("pgx", &pgx{})
}
func (pgx) GetName() string {
return "pgx"
}