Christoph Krassnigg

Results 9 comments of Christoph Krassnigg

@Fonzeca if you need it now, you can just use ``` responsive_scaffold: git: https://github.com/Gebes/responsive_scaffold.git ``` in your pubspec.yaml

You need to add `field.UUID("id", uuid.UUID{})` to the entities, which you want to have a UUID as the primary key. Since int is the default, you get [16]byte != int

You mean you want to use a foreign key, which reference not the primary key? Not possible

Hi! This works for me: `sql.In(s.C("id"), f.IDs...)` And why are you not using the generated query builder? `user.IDIn(f.IDs...)`

@xushuhui this worked for me: ```go func SingularTableName() gen.Hook { return func(next gen.Generator) gen.Generator { return gen.GenerateFunc(func(g *gen.Graph) error { for _, n := range g.Nodes { if n.Annotations ==...

@a8m requesting a review for this example. I created completely new tables, to avoid interfering with the already existing tests and to keep coverage up

@a8m It resolved the issue, thanks so much! I would still suggest merging this PR, though, as it makes the behavior consistent. O2O and O2M don't have this issue, but...

> > @a8m It resolved the issue, thanks so much! > > I would still suggest merging this PR, though, as it makes the behavior consistent. O2O and O2M don't...