Arek Mazurkiewicz
Arek Mazurkiewicz
for me it was fixed by #132, and after that in the workflow debug mode I was getting `/bin/bash: php not found`, so I manually added `/opt/homebrew/bin` (location of my...
the second way is more than enough for me to solve my issue, thank you
@AndriiSherman would you guys be interested in merging this PR?
@TGTGamer this code is a bit old as I'm waiting for any kind of response from the drizzle team, but seing as some people are using it, I'll do my...
@TGTGamer Right now I’m kinda stuck with finding a way how to verify the correctness of the created schemas in tests. The old approach - comparing serialized ast’s is crashing...
sure I can try
@amosbastian here's initial version without refine (the second argument) which passes insert test for mysql, pg and sqlite https://github.com/arekmaz/drizzle-orm/blob/effect-schema/drizzle-schema/src/effect-schema.ts edit: after some hours the insert tests are passing with refine...
@amosbastian all tests are passing, insert select, with/without refine, for each db, if you want you can copy [that file](https://github.com/arekmaz/drizzle-orm/blob/effect-schema/drizzle-schema/src/effect-schema.ts) to your project and test it, the only thing left...
EDIT: it doesn't work at the moment but in the end you should be able to do this: ```typescript const insertUserSchema = createInsertSchema(usersTable); const requestSchema = insertUserSchema.pick('name', 'email'); ``` as...
I created a new pull request https://github.com/drizzle-team/drizzle-orm/pull/2665 - I'm new to commit signing let's see if they accept it