diff --git a/lib/pq/buf.go b/lib/pq/buf.go index f021110..39332d1 100644 --- a/lib/pq/buf.go +++ b/lib/pq/buf.go @@ -4,7 +4,7 @@ import ( "bytes" "encoding/binary" - "orm/lib/pq/oid" + "loafle.com/commons/orm/lib/pq/oid" ) type readBuf []byte diff --git a/lib/pq/conn.go b/lib/pq/conn.go index 3914c97..ebdf80d 100644 --- a/lib/pq/conn.go +++ b/lib/pq/conn.go @@ -22,7 +22,7 @@ import ( "time" "unicode" - "orm/lib/pq/oid" + "loafle.com/commons/orm/lib/pq/oid" ) // Common error types diff --git a/lib/pq/encode.go b/lib/pq/encode.go index 787474d..3b49d77 100644 --- a/lib/pq/encode.go +++ b/lib/pq/encode.go @@ -13,7 +13,7 @@ import ( "sync" "time" - "orm/lib/pq/oid" + "loafle.com/commons/orm/lib/pq/oid" ) func binaryEncode(parameterStatus *parameterStatus, x interface{}) []byte { diff --git a/orm/dialects/h2/h2.go b/orm/dialects/h2/h2.go index f28f61e..0d677b3 100644 --- a/orm/dialects/h2/h2.go +++ b/orm/dialects/h2/h2.go @@ -4,8 +4,8 @@ import ( "database/sql" "database/sql/driver" - _ "orm/lib/pq" - "orm/lib/pq/hstore" + _ "loafle.com/commons/orm/lib/pq" + "loafle.com/commons/orm/lib/pq/hstore" ) type Hstore map[string]*string diff --git a/orm/model_struct.go b/orm/model_struct.go index 2c3007d..735ca8e 100644 --- a/orm/model_struct.go +++ b/orm/model_struct.go @@ -9,7 +9,7 @@ import ( "sync" "time" - "orm/inflection" + "loafle.com/commons/orm/inflection" ) // DefaultTableNameHandler default table name handler