bee icon indicating copy to clipboard operation
bee copied to clipboard

Bee is a tool for managing beego framework.

Results 4 bee issues
Sort by recently updated
recently updated
newest added

Error when executing this command ` bee generate appcode -tables ...` error: `Could not query INFORMATION_SCHEMA for PK/UK/FK information`

@astaxie 关于beego框架中数据表的一对多关系有个问题想请教一下,具体如下: 我现在有两张表,policy和rule,policy和rule时间是一对多的关系,model的定义如下: type Policy struct { Id int `orm:"pk;auto"` Rules []*Rule `orm:"reverse(many)"` ServiceInstanceId string `orm:"size(64)"` Name string `orm:"size(64)"` MinInstance int MaxInstance int StatisticWin int BreachDur int CooldownOut int CooldownIn...

I would like to create an api application based on beego, but the bee reports the following error: $ bee api westfoto can't create application outside of GOPATH `/Users/Red/Projects/gocode` you...

有时候测试环境,mysql用户名密码太复杂了,每次进入mysql命令行都要看到密码输入,可以增加一个像django 中在项目目录执行`python manage.py dbshell`命令即可直接进入mysql等sql终端。