Reset database
Date (de)serializing
Same API for multiple databases
Totally agree that it's easier to do, and with Prisma abstraction, it's much simpler to achieve....
error while querying "Converting circular structure to JSON"
How can I get the Typescript return type of a drizzle statement?
Drizzle and Turso not showing live data.
Not null must have default value as well?
Object literal may only specify known properties, and email does not exist in type and Object literal may only specify known properties, and first_name does not exist in type
When I comment out phone and email from my schema/make them both nullable/add a default value it doesn't give me this error.
```ts
async signup(dto: AuthDto) {
const hash = await argon.hash(dto.password);...Drizzle-zod typeerror when passing in pgtable
Unable to rename table
ironclad_account_kills to ironclad_account_npc but I'm unable to.
What might be causing this?
```...Type safety on .set() method?
updated_at is the table name, not the property name updatedAt. This code runs with no errors, but of course never updates the updated at because it doesn't exist!
```typescript
const data = await db
.update(verifications)...Cannot call update on table hat uses datetime
TypeError: value.toISOString is not a function) in when trying to update a a single varchar column, specifclly in mysql-core\columns\datetime.ts:57:16.
Is there anyway we can work around this or have it patched? It makes using datetime completely useless....ESLint Error when not using Drizzle
.where(...) you will delete all the rows in a table. If you didn't want to do it, please use toastTimeouts.delete(...).where(...) instead. Otherwise you can ignore this rule hereeslintdrizzle/enforce-delete-with-where
Thething is, toastTimeouts is not a Drizzle object but just a normal ES map (const toastTimeouts = new Map<string, NodeJS.Timeout>();...
there is no unique constraint matching given keys for referenced table "users"
PostgresError: there is no unique constraint matching given keys for referenced table "users"
code: "42830"
PostgresError: there is no unique constraint matching given keys for referenced table "users"
code: "42830"
RQB: Why is a where clause inside a many-to-many relation not allowed?
posts 1-n postsToTags n-1 tag
...PostgresError: Unable to check out process from the pool due to timeout
Conditional returning, returning wrong types

Push error: This statement does not return data. Use run() instead
drizzle-kit to versions 0.23.0 and when I try to execute drizzle-kit push I get the following error:
```
TypeError: This statement does not return data. Use run() instead
at Object.query (.../node_modules/drizzle-kit/bin.cjs:121780:54)
at sqlitePush (.../node_modules/drizzle-kit/bin.cjs:124445:23)...A more modular way to combine predefined query into a single transaction
Inner joining and left joining the same table (aliased) causes the return type to be never
never[].
```typescript
const fromCompany = aliasedTable(company, "fromCompany");
const toServiceArea = aliasedTable(serviceArea, "toServiceArea");...Any tips for using Drizzle without the schema declared via Drizzle syntax?