Migrations not working on github actions

"The supplied SQL string contains more than one statement" after running "generate:sqlite"
``sql
ALTER TABLE projects ADD
project_id` integer;...[bug] Some sql statement looks broken when bulk insert

Return first or throw
Can't find meta/_journal.json file when running migrate
migrate()
from a lambda function and I can't figure out why it's unable to find the _journal.json
file. My structure is in the attached image.
In db.ts
, I'm calling this migrate
function like so:
```ts...
Wrong type on decimals

Check
check
constraint?
```ts...cascades
.references()
to set up foreign keys in a table definition, but how do you set up cascades?jsonb field definition.
type MetaData = {keywords?: string[];}
and a field meta: jsonb<MetaData>("meta")
, but I'm getting the typescript warnings Type 'PgJsonbBuilderInitial<MetaData>'
is not assignable to type 'AnyPgColumnBuilder'.ts(2322)
on the lhs and Type 'MetaData' does not satisfy the constraint 'string'.ts(2344)
on the rhs. Thanks in advance."Extend" tables by other tables
maximum call stack exceeded
where
eq
clause getting maximum call stack exceededDrizzle recommended way to migrate reset
yarn prisma migrate reset
when we wanted to reset our DB.
Is there a drizzle equivalent way to do that?...compound uniqueIndex
@@unique([userId, time])
@@unique([userId, time])
planetscale: how to index col using drizzle?
[Bug?] Drizzle generates a broken query when passing an explicit value for a column as `undefined`
undefined
while inserting, drizzle generates a SQL query like:
sql .... SET exampleProperty = ,
sql .... SET exampleProperty = ,

Help improving my query

Left join with JSON

Drizzle-kit throws module not found error for internal files imported through absolute path

drizzle bug won't let me update mysql table
Generated Collate value
COLLATE utf8mb4_unicode_ci;
added to the generated MySQL.
One of my drizzle tables instead has COLLATE utf8mb4_0900_ai_ci;
I'm not good enough at dbs/sql to know if this is important, a bug, or irrelevant...