Can't find meta/_journal.json file
./src
where necessary, i get the error Can't find meta/_journal.json file
my drizzle.config file:
```ts...Postgres 18 upgrade breaks drizzle-kit push not-null
NOT NULL
seems to be changed. drizzle-kit push
tries to drop the non-null constraint on a PK/FK even if explicit .notNull()
...Drizzle not null issue

How to update snapshot when editing migration or making a custom migration?
Constraint name in migration not snake case
casing: 'snake_case'
setting and I notice when doing a uniqueness constraint that the name in the constraint (specifically the column name legacyCompanyId
) is not snake case in the generated migration. Is this a bug?
Date and lte
lte()
date. I used the prisma extention to convert my prisma schema to drizzle and I got this for my invoices ```ts
export const Invoice = pgTable('invoice', {
invoiceNum: serial('invoiceNum').notNull().primaryKey(),
customerId: text('customerId').notNull(),
employeeId: text('employeeId'),...Make AnswerOverflow forum easier to browse and moderate
How to Connect drizzle client to Cloudflare/Planetscale
How to test query operators with Jest?
Mysql Conditional Migration statements
I have some issues using drizzle as a package infering the types
import * as schemas from '../schemas';
...
schemaFilter/tableFilter for drizzle-kit generate
Too many clients, Supabase
[Error [PostgresError]: remaining connection slots are reserved for non-replication superuser connections]
[Error [PostgresError]: remaining connection slots are reserved for non-replication superuser connections]
drizzle-kit push
Deploying svelte-kit app on cloudflare with drizzle & D1 - how to orchestrate migrations?
Raw SQL string to `DrizzleSQLiteSnapshotJSON`?
drizzle-kit/api
. This is the general approach I'm using:
```ts
import {
generateSQLiteDrizzleJson,...Nested relation types are inferred as any instead of proper relation types

Wipe out SQLite database
Common Fields Logic For Multiple Tables
Index with functions in SQLite