Hafiz Shafruddin
Hafiz Shafruddin
@dchebakov Hey, I have just realized that there is pull request! Thank you for opening a pull request. Can you please pull from latest and submit again? Other than that,...
What do you think of a slight variation. This allows for multiple builder when a condition is true. it is similar to how laravel and django have done (https://github.com/ent/ent/discussions/2370). ```go...
More details on why in discussion section: https://github.com/ent/ent/discussions/2370
Thanks @chengjun-suger I tried with ```sql -- name: SelectWhereInLastNames :many SELECT * FROM users WHERE last_name = ANY(@last_name::text[]); ``` and it generates ```go import ( "context" "database/sql" "encoding/json" "github.com/lib/pq" )...
Thank you for you PR. SSL mode definitely should be parametrised. I am reopening this PR.
Do you mind making a commit that changes only sqlx.go ?
fixed with https://github.com/gmhafiz/go8/commit/669be4fc6a3105387d168526d65c5c186df08983
Got it. I asked around and https://github.com/vlucas/phpdotenv package has been suggested. It is already been used by laravel too. I added these lines before EnvironmentResolver() so values `.env` are injected...
> @gmhafiz - is this resolved? For production, our option is to hardcode the required variables into nginx virtual host file in order to not to contaminate other applications. for...
@Nelwhix Instead of `php artisan queue:work`, try `php artisan queue:listen` and see if there is a difference. I get one trace when I use queue:work and it looks like this...