-
Was trying to upgrade from Rundeck 2.6.11 to 2.7.1
I've followed all instruction on this page: http://rundeck.org/docs/upgrading/index.html
After upgrade when I was trying to list all my jobs I …
-
Database: Postgresql v14
gorm version: v1.25.1
gorm postgres driver version: v1.5.0
-
**Describe the bug**
Wakapi won't initialize at first boot : DB migration won't go throught :
```
Waiting for database to come up
wait-for-it.sh: waiting 60 seconds for serv-arm.netbird.cloud…
-
I'm reading about RLS (Row level security) because I wanna write less application logic in my services.
1. https://cazzer.medium.com/designing-the-most-performant-row-level-security-strategy-in-pos…
-
## Description
如图,生成的mode 表名中有schema字段,这样会导致使用 Select Updates,指定字段更新时,不会更新select指定的字段
测试代码
```
func main() {
q := query.Use(model.DB).BizDisease
d := &model.BizDisease{
Name…
-
### 版本
gorm.io/gorm v1.24.5 中出现问题
gorm.io/gorm v1.21.12 中正常
### 环境
使用postgresql 15版本
有如下JSONB类型
```go
type StringArray []byte
func (j *StringArray) Scan(value any) error {
bytes, ok …
-
## GORM Playground Link
https://github.com/go-gorm/playground/pull/1
## Description
1. 版本:gen=v0.3.16,gorm=v1.23.9-0.20220713102635-3262daf8d468
2. gen model开启`WithUnitTest`,数据源为postgres…
-
`go.mod`:
```text
module gorm-example
go 1.18
require (
gorm.io/driver/postgres v1.4.6
gorm.io/gorm v1.24.3
)
require (
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/…
-
DB: Postgresql
## Description
Looks like gorm 1.24.5 has an issue if you create a model with uniqueIndex attribute. Looks like previous versions of gorm did a "create unique index xxx" previousl…
-
Hi! I found some problem with indexes in PostgreSQL. For example, you have some table
```
type USER struct {
gorm.Model
Name string `json:"name" gorm:"type:varchar(64);not null"`
Count…