1
0
mirror of https://github.com/beego/bee.git synced 2024-06-12 01:43:33 +00:00

Merge pull request #337 from sergeylanzman/add-inet-type

Add inet type for postgresql
This commit is contained in:
astaxie 2016-12-20 16:58:14 +08:00 committed by GitHub
commit d7433a6e39

View File

@ -130,7 +130,8 @@ var typeMappingPostgres = map[string]string{
"USER-DEFINED": "string", // user defined
"uuid": "string", // uuid
"json": "string", // json
"jsonb": "string",
"jsonb": "string", // jsonb
"inet": "string", // ip address
}
// Table represent a table in a database
@ -1148,7 +1149,7 @@ import (
"github.com/astaxie/beego"
)
// {{ctrlName}}Controller oprations for {{ctrlName}}
// {{ctrlName}}Controller operations for {{ctrlName}}
type {{ctrlName}}Controller struct {
beego.Controller
}