github.com/go-pg/pg/v10/orm.Field.SQLType (field)
22 uses
github.com/go-pg/pg/v10/orm (current package)
composite_create.go#L77: field.SQLType == "text" {
composite_create.go#L82: b = append(b, field.SQLType...)
field.go#L29: SQLType string
query.go#L1190: if table.SoftDeleteField.SQLType == pgTypeBigint {
query.go#L1661: b = append(b, f.SQLType...)
table.go#L452: field.SQLType = fieldSQLType(field, pgTag)
table.go#L453: if strings.HasSuffix(field.SQLType, "[]") {
table.go#L477: } else if field.SQLType == pgTypeBigint && field.Type.Kind() == reflect.Uint64 {
table.go#L1369: if f != nil && sqlTypeEqual(pk.SQLType, f.SQLType) {
table.go#L1379: if f != nil && sqlTypeEqual(pk.SQLType, f.SQLType) {
table.go#L1395: if f != nil && sqlTypeEqual(pk.SQLType, f.SQLType) {
table.go#L1409: if f != nil && sqlTypeEqual(base.PKs[0].SQLType, f.SQLType) {
table.go#L1416: if f != nil && sqlTypeEqual(base.PKs[0].SQLType, f.SQLType) {
table_create.go#L138: field.SQLType == "text" {
table_create.go#L145: return append(b, pkSQLType(field.SQLType)...)
table_create.go#L147: return append(b, field.SQLType...)
update.go#L361: b = append(b, f.SQLType...)