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
1 changed files with 3 additions and 2 deletions

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
}