mirror of
https://github.com/beego/bee.git
synced 2024-11-21 23:50:54 +00:00
add inet type for Postgres
This commit is contained in:
parent
2ff99d4ea7
commit
b6d935523a
@ -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