John Nguyen

Results 14 comments of John Nguyen

@tucnak Did the concept of flows end up making it into V3?

Hey @Vikash082 you need to compile `migrate` with the sqlite3 build tag. I also believe your syntax needs to be `-database "sqlite3://mydb.db"` Please have a read [here](https://github.com/mattes/migrate/tree/master/cli#with-go-toolchain) for a postgres...

Hey @namco1992, @aarondl, thanks for the discussion here. Having the default behaviour filtering out the deleting records is totally fine. But if i were to explicitly pass in `deleted_at IS...

These two lines require a way to conditionally bypass the `deleted_at IS NOT NULL` clause. - https://github.com/volatiletech/sqlboiler/blob/master/templates/13_all.go.tpl#L6 - https://github.com/volatiletech/sqlboiler/blob/master/templates/14_find.go.tpl#L50 Is this possible with either querymods `qm.WithDeleted()` or with the generated...

It should also be noted that if global generation (add-global-variants) and soft deletion is enabled (add-soft-deletes) then SQLBoiler will fail the generation step. ``` $ ./bin/sqlboiler ./bin/sqlboiler-psql --tag db --output...

> 1. Overloads > 2. Query mod > 3. Breaking change to accept a bool I vote for using overloads as a good approach: - They will only be available...

If you have to use transactions across multiple repositories, it doesn't make sense to put it behind an interface anyway. Unless you'll only be dealing with different flavours of SQL...

This blog post explains my thinking: https://threedots.tech/post/common-anti-patterns-in-go-web-applications/ Scroll down to "Starting with the database schema".

Hi @cainlevy, since this post (a year later), does AuthN remain alive? I'm about to use this project for a production system and it looks like the activity has dwindled,...

PR was not engaged with, closing because stale.