Drizzle-Kit pushing not respecting enum changes?
Some tables aren't typed (type any)
Catching Multiple Constraint Error
Using drizzle-zod on zod-based form
Querying a table with a timestamp returns an incorrect time

how to pass array of ids as placeholder
How do i migrate when im altering a table

Question about default values for timestamp
``ts
createdAt: timestamp('created_at')
.default(sql
CURRENT_TIMESTAMP`)
.notNull(),...Unknown relational filter field: "decoder"
"__drizzle_migrations AUTO_INCREMENT gap + missing entry after PlanetScale branch promotion"
Table 'video' already exists
- The table existed but migration wasn't tracked in __drizzle_migrations
...Programmatically create database tables from schema
(drizzle-typebox) 'id' missing when using `generatedAlwaysAsIdentity`
id
field uses generatedAlwaysAsIdentity
and is missing from the schema. I see that using generatedByDefaultAsIdentity()
instead fixes this (https://github.com/drizzle-team/drizzle-orm/issues/4724) but I would need to evaluate any consequences before rolling this out to production.
Any help or insight would be appreciated!
Update: rolling drizzle-typebox
back to v0.3.0
(from v0.3.3
) seems to fix for now...drizzle-kit pull not working (freezes) with supabase
npx drizzle-kit pull
i see this log
```...Drizzle studio not working

Drizzle Studio jsonb column showing [object Object]

Drizzle Studio Fails to Connect to SingleStore
Table 'information_schema.check_constraints' doesn't exist
Has anyone encountered this before?...
Select statement with dynamic fields
select()
statement.
I would like to do something like this:
```ts
getUserById(id: number, fields: ??? = ['*']) => {...Is this a good practice for joining data in Drizzle? Should I use SQL or handle it in JS?
Multi dialect CRUD lib