adding default to array of text creates invalid migrations
values: text('values').array().notNull().default(['a', 'b'])
generates:
ALTER TABLE "test" ALTER COLUMN "values" SET DEFAULT a,b;
...Missing @opentelemetry/api module at runtime when upgrading to 0.28.4
drizzle-orm
to 0.28.4
, and running my project (after a successful typecheck) I get the error Cannot find module '@opentelemetry/api'
. Here is the full stack trace:
```
Require stack:
- C:\Users...\node_modules.pnpm\[email protected][email protected]\node_modules\drizzle-orm\index-b1dbb7ec.cjs...Invalid default value for 'updatedAt'
how to define field w/ postgres IDENTITY?
Check Constraint not working?

Is there a --force option for generating migrations in CI?

schema types

Chain orderBy clause problem
NeonDB: Migration Taking Long
I am getting typescript error when creating schema

Type errors with 0.28.3
0.28.2
to 0.28.3
I'm getting the following type errors on the table (pgTable) fields/columns.
Also attaching a .txt
file of the error message....
Automatically apply migrations on serverless deploy
npm run build
.
Right now, I open a shell into my Turso DB and paste the migration scripts....`migrate()` prints to stdout
migrate()
function it always prints content to stdout, and I can't find a way to disable it. I'm using migrate
in tests, and it's super annoying because it's polluting the console and making the test output difficult to read. Does anyone know a workaround for this?0.28.3 types issue
0.28.3
i get type errors on my table builders and on 0.28.1
i do notConnection to SQL destroyed (after idle). Do I need to manually handle open + close for each query?
I can't create a simple table..

Prepared statements with TRPC
Where should I put my prepared statements considering I'm using the db connection from the context of TRPC ?...
Conditional insert
insert
only if the result of an exists
statement is true
?
I would like to do it in one query instead of having to check with another query before the insert.
...DB connections hangs after successful execution in Lambda locally
sls invoke local -f hello
.
after returning a success response, my execution doesnt end
attached a video that shows the behaviour
if i remove the db query then it works fine...