Manny Ahman
Manny Ahman
Or maybe a process i can use to restart expired jobs any time server restarts
@evt can you or anyone help me take a look real quick? `type Event struct { bun.BaseModel `bun:"table:events"` Id string `bun:"id,pk,notnull,unique"` UserId string `bun:"user_id,notnull"` User *User `bun:"rel:belongs-to,join:user_id=id"` } type User...
I have found a fix for this. The issue wasnt with the model, but with the way we are calling the relations I initially had something like `err := da.db.NewSelect().Model(&conversations).Relation("LastMessage").Relation("Member").Relation("Creator").WhereGroup("...