I can't get the correct typing

Cannot find package 'bun' imported from F:\code\RELAND\node_modules\drizzle-orm\bun-sql\driver.js
How do I stop Drizzle from trying to instantiate a connection during build time (next.js)?
createClient
is invoked, even though nothing is trying to access the database.
How can I work around this? With Prisma this was not an issue, because Prisma only connects to the database if you actually call $connect
/ upon the first query ran....Drizzle hides DB errors, shows just "failed query"

getting a typescript error when trying to use drizzle.mock()
drizzle.mock()
. When I pass it into the function that takes it, I get the following error:
```Argument of type
NodePgDatabase<Record<string, never>> & {
$client: "$client is not available on drizzle.mock()";...How to hide notice logs because of identifier trucation?
Transactions are not supported by this version of Drizzle Kit. Please update to the latest version.
We've found duplicated view name across public schema [But there is not a duplicated view]
Is there a way to properly type a "generic query"
drizzle-seed and many-to-many relationship
local.drizzle.studo issue

Warning '@neondatabase/serverless' can only connect to remote instance, but it works?
@neondatabase/serverless
?
I was able to get rid of this warning for drizzle-kit by installing pg
but I'd rather not do that, even as a dev dependency, if I can help it.
The warning (src) conflicts with the advice given when no driver is installed (src):...Enum's created in schema are unqualified when used in tables
Updating drizzle and want to make sure I 100% understand the changes
schema.ts
I was getting this warning
The signature '(name: "seasons", columns: { id: IsPrimaryKey<NotNull<PgSerialBuilderInitial<"id">>>; year: NotNull<PgIntegerBuilderInitial<"year">>; start: NotNull<...>; end: NotNull<...>; }, extraConfig: (self: { ...; }) => PgTableExtraConfig): PgTableWithColumns<...>' of 'pgTable' is deprecated. (ts 6387)
The signature '(name: "seasons", columns: { id: IsPrimaryKey<NotNull<PgSerialBuilderInitial<"id">>>; year: NotNull<PgIntegerBuilderInitial<"year">>; start: NotNull<...>; end: NotNull<...>; }, extraConfig: (self: { ...; }) => PgTableExtraConfig): PgTableWithColumns<...>' of 'pgTable' is deprecated. (ts 6387)
kids-parents relation - is it possible?
kids
and parents
.
kids
has father_id
and mother_id
columns that reference the parents.id
.
So far I have:...Unique constraint violation error is not clearly surfaced in Drizzle ORM
How can I extend queries with additional fields
drizzle-kit generate error
drizzle-kit generate
fails with the following error:
```
npx drizzle-kit generate...
Json as a string
how to do unit test using drizzle ?