mirror of
https://github.com/beego/bee.git
synced 2024-11-01 00:00:53 +00:00
Merge pull request #337 from sergeylanzman/add-inet-type
Add inet type for postgresql
This commit is contained in:
commit
d7433a6e39
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user