Drizzle complains when I'm trying to insert into a table.
Is it possible to use the Query API to select many-to-many relations?
How can I configure `drizzle-kit introspect` to generate a schema with a schema?
drizzle-kit introspect it generates a schema.ts file without using a pg schema. It should be obvious to drizzle-kit that I'm using schemas since I have ?schema=myschema at the end of the database connection string. How can I fix this?Can't Push Schema to AWS Aurora - Is My Config Correct?
npx drizzle-kit push my schema but I keep getting a Region is missing error.
Looking into this deeper, it looks like if aws-data-api is set as the driver, it will attempt to create an instance of RDSDataClient that requires a region to be specified. ...
No matter what I try, npm run migrate defaults to my .env file. Npm run generate works just fine.
construction a dynamic query builder generically ?
conflicting peer dependency when installing drizzle-orm
Database with no password
onConflictDoNothing still incrementing primaryKey

Optionally chaining joins and typescript issues.
Use COALESCE in index
CREATE UNIQUE INDEX "IndexName" ON "Table" ("foo", COALESCE ("bar", ''));
CREATE UNIQUE INDEX "IndexName" ON "Table" ("foo", COALESCE ("bar", ''));
Error while attempting new push
users table I get the following error:
```
I've made a project in drizzle and I have changed my table and added new columns, when attempting to push I get the following error. Keep in mind that I already have users in my app.
...Creating DB with schema
Unknown Option
Custom type is unknown on Drizzle Studio
Password authentication failed when trying to run migration postgresql
Return object instead of an array when inserting object
Turso SQLite vector search
PostgresError: column "content" of relation "post_table" contains null values
ALTER TABLE "post_table" ADD COLUMN "content" text NOT NULL; but I am getting this unexpected error.
And in Drizzle-studio too I am not seeing a table named content
Any help would be greatly admire🙏
https://github.com/Boby900/yogurt...
Drizzle config file unable to locate env file
Cannot find module '$env/static/private' or its corresponding type declarations. ts(2307) when I try and import the env file with import { env } from '$env/static/private'; and Type '"pg"' is not assignable to type '"d1-http"'.ts(2322) on the drizzle driver declaration line.
It seems that typescript is unable to find the local file perhaps? Any idea what might be causing these errors?...